Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
MaddyGuthridge committed Apr 7, 2024
1 parent bcf0965 commit 66e3d2d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion flapi/__comms.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,9 @@ def client_goodbye(code: int) -> None:
res = receive_message()
# We should never reach this point, as receiving the message should
# have raised a SystemExit
log.critical(f"Failed to SystemExit -- instead received message {res}")
log.critical(
f"Failed to SystemExit -- instead received message {res!r}"
)
assert False
except FlapiClientExit:
return
Expand Down

0 comments on commit 66e3d2d

Please sign in to comment.