diff options
Diffstat (limited to 'bot/exts/events')
| -rw-r--r-- | bot/exts/events/trivianight/_questions.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/events/trivianight/_questions.py b/bot/exts/events/trivianight/_questions.py index 0c81d6d3..49fc894e 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -83,7 +83,7 @@ class QuestionView(View):              description=self.current_question["description"],              color=Colours.python_yellow          ) -        for label, answer in zip(("A", "B", "C", "D"), self.current_question["answers"]): +        for label, answer in zip("ABCD", self.current_question["answers"]):              question_embed.add_field(name=f"Choice {label}", value=answer, inline=False)          for button in self.buttons:  |