mirror of
https://github.com/clinton-hall/nzbToMedia.git
synced 2025-08-14 18:47:09 -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 sys
|
||||
|
||||
import core
|
||||
from core import logger, main_db
|
||||
|
||||
|
||||
def test_eol():
|
||||
import eol
|
||||
eol.check()
|
||||
|
@ -45,9 +49,6 @@ def test_import_core_utils():
|
|||
)
|
||||
|
||||
|
||||
import core
|
||||
from core import logger, main_db
|
||||
|
||||
def test_initial():
|
||||
core.initialize()
|
||||
del core.MYAPP
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue