Make the normalizer tests' indentation easier to understand.

This commit is contained in:
Dave Halter
2017-06-06 08:56:55 +02:00
parent ebf5850cb9
commit 7d99b8e823
3 changed files with 3 additions and 3 deletions

View File

@@ -18,7 +18,7 @@ def collect_errors(code):
column = len(match.group(1))
if ':' in code:
code, _, add_indent = code.partition(':')
column += int(add_indent)
column = int(add_indent)
yield "%s@(%s,%s)" % (code, line_nr + 1, column)