Fix flake8 E402 module level import not at top of file

This commit is contained in:
Labrys of Knossos 2019-04-05 12:50:11 -04:00
commit d208798430

View file

@ -4,6 +4,10 @@ import datetime
import os import os
import sys import sys
import core
from core import logger, main_db
def test_eol(): def test_eol():
import eol import eol
eol.check() eol.check()
@ -45,9 +49,6 @@ def test_import_core_utils():
) )
import core
from core import logger, main_db
def test_initial(): def test_initial():
core.initialize() core.initialize()
del core.MYAPP del core.MYAPP