aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar bramz <[email protected]>2019-03-22 14:09:57 -0400
committerGravatar bramz <[email protected]>2019-03-22 14:09:57 -0400
commit51819d132c7155a94af9aceee18968a55bbee965 (patch)
tree20cfd658a0625af0303fbd61362396cbbc98a752
parentChange path to evergreen directory (diff)
Correct improper import positioning
-rw-r--r--bot/seasons/evergreen/magic_8ball.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bot/seasons/evergreen/magic_8ball.py b/bot/seasons/evergreen/magic_8ball.py
index c13d2637..38a0fd24 100644
--- a/bot/seasons/evergreen/magic_8ball.py
+++ b/bot/seasons/evergreen/magic_8ball.py
@@ -2,9 +2,10 @@ import json
import logging
import random
-from discord.ext import commands
from pathlib import Path
+from discord.ext import commands
+
log = logging.getLogger(__name__)