sort compat flake8 mess correctly

This commit is contained in:
Ronny Pfannschmidt 2018-06-18 14:05:14 +02:00
parent fb992a0c81
commit ab80e0fba0
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,7 @@ except ImportError: # pragma: no cover
# Only available in Python 3.4+ or as a backport
enum = None
__all__ = ["Path"]
_PY3 = sys.version_info > (3, 0)
_PY2 = not _PY3
@ -33,7 +34,6 @@ if _PY3:
else:
from funcsigs import signature, Parameter as Parameter
from pathlib2 import Path
Path
NoneType = type(None)