diff options
author | 2021-05-05 15:40:48 -0400 | |
---|---|---|
committer | 2021-05-05 15:40:48 -0400 | |
commit | 49fb3512c096ee91b66089d1175d103af299b2df (patch) | |
tree | f5187f1c9a6d497c76bcf06cbcf88ad06fb241f4 /bot | |
parent | chore: Use pathlib more often and apply other changes (diff) | |
parent | chore: 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.py | 2 |
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) |