Skip to content

Commit 09f56be

Browse files
committed
Fix import order
Signed-off-by: Aleksei Stepanov <penguinolog@gmail.com>
1 parent ed2e571 commit 09f56be

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,7 @@ jobs:
8787
- pip install --upgrade "mypy >= 0.670"
8888
script:
8989
- mypy --strict exec_helpers
90-
91-
- <<: *code_style_check
90+
- <<: *static_analysis
9291
name: "PEP8"
9392
install:
9493
- *upgrade_python_toolset

exec_helpers/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@
3232
"ExecResult",
3333
)
3434

35-
import pkg_resources
3635
import warnings
3736

37+
import pkg_resources
38+
3839
from .proc_enums import ExitCodes
3940

4041
from .exceptions import (

0 commit comments

Comments
 (0)