diff options
| author | 2018-02-13 16:17:52 +0000 | |
|---|---|---|
| committer | 2018-02-13 16:17:52 +0000 | |
| commit | 1ed81764325468ee3566acbb6c76655f0c723b4e (patch) | |
| tree | 725bcad643135e5a0be0f613173d2a000441a751 | |
| parent | moved formatter.py to correct dir, and changed __main__.py to use the formatter (diff) | |
reordered imports on __main__.py
| -rw-r--r-- | bot/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/__main__.py b/bot/__main__.py index 306e33ff5..2c9bf4db3 100644 --- a/bot/__main__.py +++ b/bot/__main__.py @@ -4,8 +4,8 @@ import os from discord import Game from discord.ext.commands import AutoShardedBot, when_mentioned_or -from bot.utils import CaseInsensitiveDict from bot.formatter import Formatter +from bot.utils import CaseInsensitiveDict bot = AutoShardedBot( command_prefix=when_mentioned_or( |