diff options
author | 2018-10-11 11:44:28 +0200 | |
---|---|---|
committer | 2018-10-11 11:44:28 +0200 | |
commit | a606e483b3a42357778fc3d4979e800e8dd38739 (patch) | |
tree | ee2c99f8d7172b87ed2e1dd1b90c09b52fbb26c8 /bot/cogs/halloweenify.py | |
parent | Merge pull request #34 from markylon/master (diff) |
Adding Pale Man, fixing all flake8 issues, converting halloweenify to use aiohttp, fixing broken logging, ignoring irrelevant loggers, and turning the script into a valid module script.
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! """ |