diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-08-31 22:15:29 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-09-01 08:27:04 +0200 |
commit | 5f96098d658fd9c1b59c5f1675033485e1b3bad0 (patch) | |
tree | cfb6d8f4d46f7aa05c73b6cc10cabde3c7eae5de /tests/functional/u/unused/unused_argument.py | |
parent | ca9eddc137936d1ffe83ec78d051f1b23f7c27b1 (diff) | |
download | pylint-git-5f96098d658fd9c1b59c5f1675033485e1b3bad0.tar.gz |
Remove the python3 porting mode from the codebase
It's possible to use the python3 porting checker from
an older pylint version. But it's not evolving anymore
and was costing resource to maintain.
Diffstat (limited to 'tests/functional/u/unused/unused_argument.py')
-rw-r--r-- | tests/functional/u/unused/unused_argument.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/u/unused/unused_argument.py b/tests/functional/u/unused/unused_argument.py index c5f534259..a3fd4e6ab 100644 --- a/tests/functional/u/unused/unused_argument.py +++ b/tests/functional/u/unused/unused_argument.py @@ -47,7 +47,7 @@ def metadata_from_dict(key): """ return {key: str(value) for key, value in key.items()} -# pylint: disable=too-few-public-methods, print-statement, misplaced-future,wrong-import-position +# pylint: disable=too-few-public-methods, misplaced-future,wrong-import-position from __future__ import print_function |