Fix flake8 E402 module level import not at top of file

This commit is contained in:
Labrys of Knossos 2019-04-07 13:16:35 -04:00
commit 9527a2bd67
3 changed files with 18 additions and 14 deletions

View file

@ -657,16 +657,16 @@
from __future__ import print_function
import eol
eol.check()
import cleanup
cleanup.clean(cleanup.FOLDER_STRUCTURE)
import datetime
import os
import sys
import eol
import cleanup
eol.check()
cleanup.clean(cleanup.FOLDER_STRUCTURE)
import core
from core import logger, main_db
from core.auto_process import comics, games, movies, music, tv, books