diff --git a/xair_api/shared.py b/xair_api/shared.py index 32a0657..70b588a 100644 --- a/xair_api/shared.py +++ b/xair_api/shared.py @@ -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: