diff options
author | 2019-03-04 11:12:49 -0500 | |
---|---|---|
committer | 2019-03-04 11:12:49 -0500 | |
commit | 30b92908079c51e2e3ce394b053821e5ccede3c8 (patch) | |
tree | bb6e85f4eed5fd6501bbdda088ae62682a49899a | |
parent | Update packages & relock (diff) |
Fix import order
flake8-import-order was recently updated to 0.18.1, which fixes some issues with the pycharm import style
-rw-r--r-- | bot/seasons/halloween/spookyavatar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/seasons/halloween/spookyavatar.py b/bot/seasons/halloween/spookyavatar.py index a2ed3b85..f26cf0b3 100644 --- a/bot/seasons/halloween/spookyavatar.py +++ b/bot/seasons/halloween/spookyavatar.py @@ -4,8 +4,8 @@ from io import BytesIO import aiohttp import discord -from discord.ext import commands from PIL import Image +from discord.ext import commands from bot.utils.halloween import spookifications |