Skip to content

Commit

Permalink
fix quotes in f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
katrinafyi committed Nov 30, 2024
1 parent 40fb182 commit 94e3f72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion uqcsbot/advent.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ def make_message_arguments(self) -> Dict[str, Any]:
notes.append(f"sorted by {self.sortby}")
if self.is_truncated:
notes.append(f"top {len(self.visible_members)} shown")
body = f"({", ".join(notes)})" if notes else ""
body = f"({', '.join(notes)})" if notes else ""

basename = f"advent_{self.code}_{self.year}_{self.day}"

Expand Down

0 comments on commit 94e3f72

Please sign in to comment.