diff options
author | Hugo van Kemenade <hugovk@users.noreply.github.com> | 2019-09-12 14:10:27 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-09-12 06:10:27 -0500 |
commit | b72c0dd9a3ee5c992f94937b58de3b2153f4624d (patch) | |
tree | 1161dcf81f4c8a81c1af254e164d92596437f3d1 /pylint/utils/utils.py | |
parent | 0b947809fc018963fce1745cda89649e6d66d0c7 (diff) | |
download | pylint-git-b72c0dd9a3ee5c992f94937b58de3b2153f4624d.tar.gz |
Remove redundant compatibility code (#3097)
We no longer support Python 2 so we can remove
the compatibility code we had in place for that version.
Diffstat (limited to 'pylint/utils/utils.py')
-rw-r--r-- | pylint/utils/utils.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py index 1faba9ae8..5605ecd06 100644 --- a/pylint/utils/utils.py +++ b/pylint/utils/utils.py @@ -3,8 +3,6 @@ # Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/PyCQA/pylint/blob/master/COPYING -from __future__ import print_function - import codecs import re import sys |