From 85664c8465a67222d3e6c441f44971d0f4fae06b Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Thu, 8 Feb 2024 18:15:18 +0000 Subject: [PATCH] swap i, remote order --- xair_api/shared.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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: