Skip to content

Commit

Permalink
fix: pip8
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeyqu committed Mar 30, 2024
1 parent 40a5ec2 commit 1628f7f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/tg/handlers/get_board_credentials_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ def get_board_credentials(update: telegram.Update, tg_context):
cred for cred in board_json if cred["trelloUsername"] == member.trello
), None)
if not creds:
logger.warn(f'Board creds not found for user {get_sender_username(update)}')
logger.warn(
f'Board creds not found for user {get_sender_username(update)}'
)
reply(load('get_board_credentials_handler__not_found'), update)
return
logger.info(f'Board creds found for username {get_sender_username(update)}')
Expand Down

0 comments on commit 1628f7f

Please sign in to comment.