diff --git a/tests/lint/line_length.py b/tests/lint/line_length.py index 28f25547..9266936f 100755 --- a/tests/lint/line_length.py +++ b/tests/lint/line_length.py @@ -38,8 +38,7 @@ def endswithstring(line): True if line ends with string, False otherwise. """ - return any(line.endswith(end) - for end in ('"', '",', '");', '";', '" \\', '];')) + return any(line.endswith(end) for end in ('"', '",', '");', '";', '" \\', '];')) def main():