Skip to content
Snippets Groups Projects
Commit 49b0405c authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Fixed identation

parent 319f2e89
No related branches found
No related tags found
1 merge request!8Fixed identation
...@@ -43,15 +43,15 @@ nitpick_ignore = [] ...@@ -43,15 +43,15 @@ nitpick_ignore = []
# Allows the user to override warnings from a separate file # Allows the user to override warnings from a separate file
if os.path.exists('nitpick-exceptions.txt'): if os.path.exists('nitpick-exceptions.txt'):
for line in open('nitpick-exceptions.txt'): for line in open('nitpick-exceptions.txt'):
if line.strip() == "" or line.startswith("#"): if line.strip() == "" or line.startswith("#"):
continue continue
dtype, target = line.split(None, 1) dtype, target = line.split(None, 1)
target = target.strip() target = target.strip()
try: # python 2.x try: # python 2.x
target = unicode(target) target = unicode(target)
except NameError: except NameError:
pass pass
nitpick_ignore.append((dtype, target)) nitpick_ignore.append((dtype, target))
# Always includes todos # Always includes todos
todo_include_todos = True todo_include_todos = True
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment