Skip to content

Commit

Permalink
Fix quotes in f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
DoctorJohn committed Nov 17, 2024
1 parent 805abe9 commit dea76f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ async def handle_message(self, message: Message) -> None:
await self.handle_complete(message)

else:
error_message = f"Unknown message type: {message["type"]}"
error_message = f"Unknown message type: {message['type']}"
await self.handle_invalid_message(error_message)

except KeyError:
Expand Down

0 comments on commit dea76f2

Please sign in to comment.