diff --git a/pterodactyl/websocket.py b/pterodactyl/websocket.py index 5645a4b..e4be910 100644 --- a/pterodactyl/websocket.py +++ b/pterodactyl/websocket.py @@ -34,7 +34,7 @@ async def establish_websocket_connection(coginstance: Pterodactyl) -> None: async def loop(coginstance: Pterodactyl, websocket: websockets.WebSocketClientProtocol) -> None: current_status = '' - while True: + while True: # pylint: disable=too-many-nested-blocks message = await websocket.recv() if json.loads(message)['event'] in ('token expiring', 'token expired'): logger.debug("Received token expiring/expired event. Refreshing token.")