Skip to content

Commit

Permalink
Run black on Python script
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Nov 3, 2023
1 parent 0e58a59 commit d5460f7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tests/lint/line_length.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit d5460f7

Please sign in to comment.