aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar RohanRadia <[email protected]>2019-05-11 12:30:35 +0100
committerGravatar GitHub <[email protected]>2019-05-11 12:30:35 +0100
commitfb3a0fd2dbb12d614d2eb2c929948b3260f4ab11 (patch)
treeafb93cad8b30a52abe33ccd2c795267082b51e20
parentAdded embed to stop double message confusion and fixed sleep to asyncio.sleep() (diff)
Lint issues - fixed import orders
-rw-r--r--bot/seasons/halloween/8ball.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/halloween/8ball.py b/bot/seasons/halloween/8ball.py
index de30fa78..b5be7cc6 100644
--- a/bot/seasons/halloween/8ball.py
+++ b/bot/seasons/halloween/8ball.py
@@ -1,10 +1,10 @@
import asyncio
-import discord
import json
import logging
import random
from pathlib import Path
+import discord
from discord.ext import commands
log = logging.getLogger(__name__)