Skip to content

Commit

Permalink
Too many arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
ic-dev21 committed Nov 25, 2024
1 parent e0026a1 commit 9dbeadf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyhilo/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 9dbeadf

Please sign in to comment.