aboutsummaryrefslogtreecommitdiffstats
path: root/bot
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-05 15:40:48 -0400
committerGravatar ToxicKidz <[email protected]>2021-05-05 15:40:48 -0400
commit49fb3512c096ee91b66089d1175d103af299b2df (patch)
treef5187f1c9a6d497c76bcf06cbcf88ad06fb241f4 /bot
parentchore: Use pathlib more often and apply other changes (diff)
parentchore: Remove useless call of `dict.keys()` (diff)
Merge branch 'spring-cleanup' of https://github.com/ToxicKidz/sir-lancebot into spring-cleanup
Diffstat (limited to 'bot')
-rw-r--r--bot/exts/halloween/monstersurvey.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/halloween/monstersurvey.py b/bot/exts/halloween/monstersurvey.py
index 38e3850e..231454ea 100644
--- a/bot/exts/halloween/monstersurvey.py
+++ b/bot/exts/halloween/monstersurvey.py
@@ -84,7 +84,7 @@ class MonsterSurvey(Cog):
value="Which monster has the most votes? This command will tell you.",
inline=False
)
- default_embed.set_footer(text=f"Monsters choices are: {', '.join(self.voter_registry.keys())}")
+ default_embed.set_footer(text=f"Monsters choices are: {', '.join(self.voter_registry)}")
await ctx.send(embed=default_embed)