Commit 89b54e29 authored by Stefan Behnel's avatar Stefan Behnel

undo import reordering to keep declarations before assignments

parent 8101c5f5
...@@ -5,14 +5,14 @@ ...@@ -5,14 +5,14 @@
from __future__ import absolute_import from __future__ import absolute_import
import os
import platform
import cython import cython
cython.declare(make_lexicon=object, lexicon=object, cython.declare(make_lexicon=object, lexicon=object,
print_function=object, error=object, warning=object, print_function=object, error=object, warning=object,
os=object, platform=object) os=object, platform=object)
import os
import platform
from .. import Utils from .. import Utils
from ..Plex.Scanners import Scanner from ..Plex.Scanners import Scanner
from ..Plex.Errors import UnrecognizedInput from ..Plex.Errors import UnrecognizedInput
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment