diff options
author | 2018-10-11 12:21:46 +0200 | |
---|---|---|
committer | 2018-10-11 12:21:46 +0200 | |
commit | f51e7a3bc7517ff6843a6fea28c9772d262e970e (patch) | |
tree | a800567d389918002f97a31ee9348658e7d3ce18 /bot/cogs/halloweenify.py | |
parent | Merge pull request #34 from markylon/master (diff) | |
parent | Made the movie formatter less naïve. It no longer crashes if TMDB's return d... (diff) |
Merge pull request #41 from discord-python/fixup
Various critical fixes.
Diffstat (limited to 'bot/cogs/halloweenify.py')
-rw-r--r-- | bot/cogs/halloweenify.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/cogs/halloweenify.py b/bot/cogs/halloweenify.py index 8a9db3df..ddd96bc6 100644 --- a/bot/cogs/halloweenify.py +++ b/bot/cogs/halloweenify.py @@ -1,15 +1,13 @@ -from pathlib import Path from json import load +from pathlib import Path from random import choice - import discord from discord.ext import commands from discord.ext.commands.cooldowns import BucketType class Halloweenify: - """ A cog to change a invokers nickname to a spooky one! """ |