mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2024-11-21 12:30:46 +00:00
swap i, remote order
This commit is contained in:
parent
a3473d5922
commit
85664c8465
@ -630,9 +630,9 @@ class Send:
|
||||
self.i = i + 1
|
||||
|
||||
@classmethod
|
||||
def make(cls, _cls, remote, i, index=None):
|
||||
def make(cls, _cls, i, remote, index=None):
|
||||
SEND_cls = type("Send", (cls, _cls), {})
|
||||
return SEND_cls(remote, i, index)
|
||||
return SEND_cls(i, remote, index)
|
||||
|
||||
@property
|
||||
def address(self) -> str:
|
||||
|
Loading…
Reference in New Issue
Block a user