summaryrefslogtreecommitdiff
path: root/pylint/checkers/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/base.py')
-rw-r--r--pylint/checkers/base.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py
index cd4a81e..c9e8b75 100644
--- a/pylint/checkers/base.py
+++ b/pylint/checkers/base.py
@@ -1506,15 +1506,15 @@ class ComparisonChecker(_BasicChecker):
return
left = node.left
operator, right = node.ops[0]
+ if (operator in ('<', '<=', '>', '>=', '!=', '==')
+ and isinstance(left, astroid.Const)):
+ self._check_misplaced_constant(node, left, right, operator)
+
if operator == '==':
if isinstance(left, astroid.Const):
- self._check_misplaced_constant(node, left, right, operator)
self._check_singleton_comparison(left, node)
elif isinstance(right, astroid.Const):
self._check_singleton_comparison(right, node)
- elif (operator in ('<', '<=', '>', '>=', '!=')
- and isinstance(left, astroid.Const)):
- self._check_misplaced_constant(node, left, right, operator)
def register(linter):