summaryrefslogtreecommitdiff
path: root/pylint/checkers/format.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/checkers/format.py')
-rw-r--r--pylint/checkers/format.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py
index eed5f9fba..1266f6fe0 100644
--- a/pylint/checkers/format.py
+++ b/pylint/checkers/format.py
@@ -1064,6 +1064,7 @@ class FormatChecker(BaseTokenChecker):
self.add_message('bad-indentation', line=line_num,
args=(level * unit_size + len(suppl), i_type,
expected * unit_size))
+ return None
def register(linter):