diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2019-03-09 11:22:36 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-03-20 09:07:35 +0100 |
commit | 5ab140ac3b3dda6f32e0f73aeec09abf015ea30f (patch) | |
tree | e0f633c7e63f7e0183c676c4d9e94d7986309b88 /pylint/epylint.py | |
parent | a422e9750843f3b41a6919b9a5fa2c7d54593394 (diff) | |
download | pylint-git-5ab140ac3b3dda6f32e0f73aeec09abf015ea30f.tar.gz |
Style - Apply isort on all apllicable files
Diffstat (limited to 'pylint/epylint.py')
-rwxr-xr-x | pylint/epylint.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pylint/epylint.py b/pylint/epylint.py index 50c3a99f9..c2d4a21d8 100755 --- a/pylint/epylint.py +++ b/pylint/epylint.py @@ -56,10 +56,10 @@ from __future__ import print_function import os import os.path as osp -import sys import shlex -from subprocess import Popen, PIPE +import sys from io import StringIO +from subprocess import PIPE, Popen def _get_env(): |