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/test/unittest_checker_python3.py | |
parent | a422e9750843f3b41a6919b9a5fa2c7d54593394 (diff) | |
download | pylint-git-5ab140ac3b3dda6f32e0f73aeec09abf015ea30f.tar.gz |
Style - Apply isort on all apllicable files
Diffstat (limited to 'pylint/test/unittest_checker_python3.py')
-rw-r--r-- | pylint/test/unittest_checker_python3.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/pylint/test/unittest_checker_python3.py b/pylint/test/unittest_checker_python3.py index bc4c346b7..417bc2bb6 100644 --- a/pylint/test/unittest_checker_python3.py +++ b/pylint/test/unittest_checker_python3.py @@ -20,14 +20,12 @@ from __future__ import absolute_import import sys import textwrap -import pytest - import astroid +import pytest from pylint import testutils from pylint.checkers import python3 as checker -from pylint.interfaces import INFERENCE_FAILURE, INFERENCE - +from pylint.interfaces import INFERENCE, INFERENCE_FAILURE # Decorator for any tests that will fail under Python 3 python2_only = pytest.mark.skipif(sys.version_info[0] > 2, reason="Python 2 only") |