From 2335a5fadb0157078a433b971265027e88337af2 Mon Sep 17 00:00:00 2001 From: Mattia Giambirtone Date: Thu, 22 Sep 2022 13:58:27 +0200 Subject: [PATCH] Minor fix --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index f0103fe..5533cec 100755 --- a/src/main.py +++ b/src/main.py @@ -217,7 +217,7 @@ async def main(arguments: argparse.Namespace) -> int: # Asyncio's signal handlers won't work # when blocked in synchronous code like # this - return + return 0 logger.info(f"Logging in as {username!r}") if access_token := await login_with_gia(logger, username, password, arguments.verbose): logger.debug(f"Access token is {access_token!r}")