aboutsummaryrefslogtreecommitdiffstats
path: root/bot/seasons/easter/traditions.py
diff options
context:
space:
mode:
authorGravatar sco1 <[email protected]>2019-04-24 17:20:30 -0400
committerGravatar sco1 <[email protected]>2019-04-24 17:20:30 -0400
commitb611ff92ea69cc1ac6b82aa3f06b9d9675e86a82 (patch)
tree0fdb47359609c44479a331b5684dcb3d50a1ff56 /bot/seasons/easter/traditions.py
parentRemove docstring newline linting from ignored codes (diff)
Relint Seasonalbot with new linting rules
Diffstat (limited to 'bot/seasons/easter/traditions.py')
-rw-r--r--bot/seasons/easter/traditions.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/bot/seasons/easter/traditions.py b/bot/seasons/easter/traditions.py
index 05cd79f3..bed874f9 100644
--- a/bot/seasons/easter/traditions.py
+++ b/bot/seasons/easter/traditions.py
@@ -20,7 +20,6 @@ class Traditions(commands.Cog):
@commands.command(aliases=('eastercustoms',))
async def easter_tradition(self, ctx):
"""Responds with a random tradition or custom"""
-
random_country = random.choice(list(traditions))
await ctx.send(f"{random_country}:\n{traditions[random_country]}")
@@ -28,6 +27,5 @@ class Traditions(commands.Cog):
def setup(bot):
"""Traditions Cog load."""
-
bot.add_cog(Traditions(bot))
log.info("Traditions cog loaded")