From 32135e802bfbaa83b34ab299c478e5aed7a38110 Mon Sep 17 00:00:00 2001 From: Michael Pilosov Date: Sun, 19 Mar 2023 18:17:43 -0600 Subject: [PATCH] linting --- src/announce_server/decorator.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/announce_server/decorator.py b/src/announce_server/decorator.py index c289166..1224ec1 100644 --- a/src/announce_server/decorator.py +++ b/src/announce_server/decorator.py @@ -30,7 +30,9 @@ async def _announce_server(**kwargs): break except Exception as e: print(e) - print(f"Failed to connect to host, retrying in {RETRY_INTERVAL} seconds") + print( + f"Failed to connect to host server, retrying in {RETRY_INTERVAL} seconds" + ) await asyncio.sleep(RETRY_INTERVAL) # await sio.connect(f'http://{HOST_SERVER_IP}:{HOST_SERVER_PORT}') print("Connected to host")