From 9dbeadf0629583e8d7be5e262ee7fb3519f1e86a Mon Sep 17 00:00:00 2001 From: "Ian C." <108159253+ic-dev21@users.noreply.github.com> Date: Mon, 25 Nov 2024 18:42:48 -0500 Subject: [PATCH] Too many arguments --- pyhilo/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyhilo/api.py b/pyhilo/api.py index 84f7214..1c9cc2c 100755 --- a/pyhilo/api.py +++ b/pyhilo/api.py @@ -373,8 +373,8 @@ async def _async_post_init(self) -> None: await self.websocket_manager.initialize_websockets() # Create both websocket clients - self.websocket = WebsocketClient(self, self.websocket_manager.devicehub) - self.websocket2 = WebsocketClient(self, self.websocket_manager.challengehub) + self.websocket = WebsocketClient(self.websocket_manager.devicehub) + self.websocket2 = WebsocketClient(self.websocket_manager.challengehub) async def refresh_ws_token(self) -> None: """Refresh the websocket token."""