diff --git a/.dictionary b/.dictionary index 17c82de..d5be02f 100644 --- a/.dictionary +++ b/.dictionary @@ -16,7 +16,7 @@ builtins docstrings ebeweber everyone's -facelesssuser +facelessuser gforcada installable jinja diff --git a/tests/validate_json_format.py b/tests/validate_json_format.py index bc653ce..2d63117 100644 --- a/tests/validate_json_format.py +++ b/tests/validate_json_format.py @@ -181,8 +181,8 @@ def check_format(self, file_name): for line in f: indent_match = (RE_LINE_INDENT_TAB if self.use_tabs else RE_LINE_INDENT_SPACE).match(line) end_comment = ( - (comment_align is not None or (indent_match and indent_match.group(2))) - and RE_COMMENT_END.search(line) + (comment_align is not None or (indent_match and indent_match.group(2))) and + RE_COMMENT_END.search(line) ) # Don't allow empty lines at file start. if count == 1 and line.strip() == '':