From d5460f73fd20128443ffabbb82b8268f260dc40a Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Fri, 3 Nov 2023 13:32:11 +0100 Subject: [PATCH] Run black on Python script --- tests/lint/line_length.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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():