mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2026-04-18 05:23:32 +00:00
swap i, remote order for consistency.
This commit is contained in:
@@ -66,7 +66,7 @@ class AuxRtn(IRtn):
|
||||
)
|
||||
},
|
||||
"send": tuple(
|
||||
Send.make(cls, remote, i)
|
||||
Send.make(cls, i, remote)
|
||||
for i in range(remote.kind.num_bus + remote.kind.num_fx)
|
||||
),
|
||||
"mute": mute_prop(),
|
||||
@@ -108,7 +108,7 @@ class FxRtn(IRtn):
|
||||
)
|
||||
},
|
||||
"send": tuple(
|
||||
Send.make(cls, remote, i, index)
|
||||
Send.make(cls, i, remote, index)
|
||||
for i in range(remote.kind.num_bus + remote.kind.num_fx)
|
||||
),
|
||||
"mute": mute_prop(),
|
||||
|
||||
Reference in New Issue
Block a user