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/input | |
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/input')
-rw-r--r-- | tests/input/func_typecheck_callfunc_assigment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/input/func_typecheck_callfunc_assigment.py b/tests/input/func_typecheck_callfunc_assigment.py index 36d476e89..e493014e2 100644 --- a/tests/input/func_typecheck_callfunc_assigment.py +++ b/tests/input/func_typecheck_callfunc_assigment.py @@ -1,4 +1,4 @@ -# pylint: disable=useless-return, useless-object-inheritance +# pylint: disable=useless-return, useless-object-inheritance, condition-evals-to-constant """check assignment to function call where the function doesn't return 'E1111': ('Assigning to function call which doesn\'t return', |