aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-05 15:36:39 -0400
committerGravatar GitHub <[email protected]>2021-05-05 15:36:39 -0400
commitb486ed47478adf2916291497243e760026e686bd (patch)
treeb9f2ac7fa5615b22ad9acf20aa520a50adc28bd3
parentchore: Apply suggested changes (diff)
chore: Remove useless call of `dict.keys()`
Co-authored-by: Anand Krishna <[email protected]>
-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 486e8937..42a316e6 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)