diff options
author | 2021-10-26 07:36:46 -0400 | |
---|---|---|
committer | 2022-02-09 18:13:36 -0500 | |
commit | 848cf63fa885dc51e08d8975b0e834b272cec52d (patch) | |
tree | 3fdb969e0e2270cd3adb8e3d96208913dc2a1f37 /bot | |
parent | Better type hinting (diff) |
Brevity with "answer choice"
Co-authored-by: Bluenix <[email protected]>
Diffstat (limited to 'bot')
-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 73d147f0..0c81d6d3 100644 --- a/bot/exts/events/trivianight/_questions.py +++ b/bot/exts/events/trivianight/_questions.py @@ -37,7 +37,7 @@ class QuestionButton(Button): await interaction.response.send_message( embed=Embed( title="Success!", - description=f"You chose answer choice {self.label}.", + description=f"You chose answer {self.label}.", color=Colours.soft_green ), ephemeral=True |