mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-20 13:23:18 -07:00
Fix flake8 E402 module level import not at top of file
This commit is contained in:
parent
8e6e2d1647
commit
d208798430
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue