swap i, remote order

This commit is contained in:
onyx-and-iris 2024-02-08 18:15:18 +00:00
parent a3473d5922
commit 85664c8465

View File

@ -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: