From 94e3f72f90d327c39d89e47075f57ed4541cae8b Mon Sep 17 00:00:00 2001 From: rina Date: Sat, 30 Nov 2024 19:45:23 +1000 Subject: [PATCH] fix quotes in f-string --- uqcsbot/advent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uqcsbot/advent.py b/uqcsbot/advent.py index 3136b26..55a6492 100644 --- a/uqcsbot/advent.py +++ b/uqcsbot/advent.py @@ -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}"