diff options
| author | 2019-02-07 21:25:03 -0500 | |
|---|---|---|
| committer | 2019-02-07 21:25:03 -0500 | |
| commit | 0998392651a5e10f04f5b6e031988ff5dd233612 (patch) | |
| tree | 0d637c32d15fe42f90ecac02dc585d7daf0b9eee | |
| parent | Swapped around import statements. (diff) | |
Update rules.py
| -rw-r--r-- | bot/cogs/rules.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/cogs/rules.py b/bot/cogs/rules.py index f940d22b9..59f28615c 100644 --- a/bot/cogs/rules.py +++ b/bot/cogs/rules.py @@ -1,7 +1,8 @@ import re from typing import Optional -bot.load_extension("bot.cogs.rules") +from discord import Colour, Embed +from discord.ext.commands import Bot, Context, command from bot.constants import Channels, Roles from bot.decorators import redirect_output |