summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2015-10-26 15:50:32 +0000
committerClaudiu Popa <pcmanticore@gmail.com>2015-10-26 15:50:32 +0000
commita3e55481ef19dc83192f5c8190a6fd77685b33e8 (patch)
tree62971b44ee655da30b832a8b0282fe49f57ba4b9
parentff0050ddc420f559dcae414b5944eec20b70103a (diff)
downloadpylint-a3e55481ef19dc83192f5c8190a6fd77685b33e8.tar.gz
Add an extra space between classes.
-rw-r--r--pylint/checkers/base.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py
index 87d1a4d..9958787 100644
--- a/pylint/checkers/base.py
+++ b/pylint/checkers/base.py
@@ -1453,6 +1453,7 @@ class LambdaForComprehensionChecker(_BasicChecker):
and infered.name in ['map', 'filter']):
self.add_message('deprecated-lambda', node=node)
+
class ComparisonChecker(_BasicChecker):
"""checks for singleton comparison and for yoda condition