File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 11import asyncio
2+ import logging
23from typing import Any , Dict , List , Optional
34
45from gql import Client , gql
@@ -549,8 +550,8 @@ async def subscribe_to_device_updated(
549550 ) -> None :
550551 LOG .debug ("subscribe_to_device_updated called" )
551552
552- #Setting log level to suppress keepalive messages on gql transport
553- logging .getLogger (' gql.transport.websockets' ).setLevel (logging .WARNING )
553+ # Setting log level to suppress keepalive messages on gql transport
554+ logging .getLogger (" gql.transport.websockets" ).setLevel (logging .WARNING )
554555 while True : # Loop to reconnect if the connection is lost
555556 LOG .debug ("subscribe_to_device_updated while true" )
556557 access_token = await self ._get_access_token ()
You can’t perform that action at this time.
0 commit comments