Skip to content

Commit

Permalink
refactor: add quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
furkan-bilgin committed Oct 11, 2024
1 parent 9d7af96 commit 171bc2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daq/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def handle_message(self, message: "DAQJobMessage") -> bool:
is_message_type_accepted = True
if not is_message_type_accepted:
raise Exception(
f"Message type {type(message)} is not accepted by {type(self).__name__}"
f"Message type '{type(message)}' is not accepted by '{type(self).__name__}'"
)
return True

Expand Down

0 comments on commit 171bc2c

Please sign in to comment.