diff options
author | ethan-leba <ethanleba5@gmail.com> | 2020-05-16 14:34:12 -0400 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2020-08-31 21:16:25 +0200 |
commit | 5b6844186f94e5fb4bdc63badbbf49b354912bfd (patch) | |
tree | 098dee527d13c3b700f5dd8485552ff72d8c38ac /tests/functional/l/len_checks.py | |
parent | 5c84f0dafe79ca1631f70cf8355a5ccc7f9ed232 (diff) | |
download | pylint-git-5b6844186f94e5fb4bdc63badbbf49b354912bfd.tar.gz |
Add simplifiable-condition and condition-evals-to-constant to the refactoring checker
Diffstat (limited to 'tests/functional/l/len_checks.py')
-rw-r--r-- | tests/functional/l/len_checks.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/l/len_checks.py b/tests/functional/l/len_checks.py index d7db14ddd..216a7e672 100644 --- a/tests/functional/l/len_checks.py +++ b/tests/functional/l/len_checks.py @@ -1,5 +1,5 @@ # pylint: disable=too-few-public-methods,import-error, no-absolute-import,missing-docstring, misplaced-comparison-constant -# pylint: disable=useless-super-delegation,wrong-import-position,invalid-name, wrong-import-order +# pylint: disable=useless-super-delegation,wrong-import-position,invalid-name, wrong-import-order, condition-evals-to-constant if len('TEST'): # [len-as-condition] pass |