Minor fix

This commit is contained in:
Mattia Giambirtone 2022-09-22 13:58:27 +02:00
parent 7d18eda9fb
commit 2335a5fadb
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ async def main(arguments: argparse.Namespace) -> int:
# Asyncio's signal handlers won't work # Asyncio's signal handlers won't work
# when blocked in synchronous code like # when blocked in synchronous code like
# this # this
return return 0
logger.info(f"Logging in as {username!r}") logger.info(f"Logging in as {username!r}")
if access_token := await login_with_gia(logger, username, password, arguments.verbose): if access_token := await login_with_gia(logger, username, password, arguments.verbose):
logger.debug(f"Access token is {access_token!r}") logger.debug(f"Access token is {access_token!r}")