pep8: Fix E128 violations.

With some line-wrapping tweaks by tabbott.
This commit is contained in:
reallyly
2016-12-11 13:30:45 +00:00
committed by Tim Abbott
parent fae59502ab
commit 94b28e0afb
29 changed files with 174 additions and 162 deletions

View File

@@ -219,7 +219,7 @@ def validate(fn=None, text=None, check_indent=True):
def is_special_html_tag(s, tag):
# type: (str, str) -> bool
return (s.startswith('<!--') or
tag in ['link', 'meta', '!DOCTYPE'])
tag in ['link', 'meta', '!DOCTYPE'])
def is_django_block_tag(tag):
# type: (str) -> bool