aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts
diff options
context:
space:
mode:
authorGravatar ToxicKidz <[email protected]>2021-05-04 11:30:19 -0400
committerGravatar GitHub <[email protected]>2021-05-04 11:30:19 -0400
commit8769624eac7e86e634fcef39c8fb81c4abc2f48e (patch)
tree0c9fc6a5a312bbdd8c0989538e41e375d7f1a759 /bot/exts
parentchore: Don't return a Message object when the return annotation is None (diff)
chore: Don't make content an empty string
Co-authored-by: Matteo Bertucci <[email protected]>
Diffstat (limited to 'bot/exts')
-rw-r--r--bot/exts/evergreen/snakes/_snakes_cog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/snakes/_snakes_cog.py b/bot/exts/evergreen/snakes/_snakes_cog.py
index c8633ce7..e75f958c 100644
--- a/bot/exts/evergreen/snakes/_snakes_cog.py
+++ b/bot/exts/evergreen/snakes/_snakes_cog.py
@@ -829,7 +829,7 @@ class Snakes(Cog):
)
)
- quiz = await ctx.send("", embed=embed)
+ quiz = await ctx.send(embed=embed)
await self._validate_answer(ctx, quiz, answer, options)
@snakes_group.command(name='name', aliases=('name_gen',))