From eead72ec9e43ed3d0434519099bfe19d3c97294b Mon Sep 17 00:00:00 2001 From: David Horstmann Date: Thu, 8 Dec 2022 17:38:27 +0000 Subject: [PATCH] Reindent line continuations for pylint Signed-off-by: David Horstmann --- scripts/code_style.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/code_style.py b/scripts/code_style.py index ebf0cd48e207..68cd5562000a 100755 --- a/scripts/code_style.py +++ b/scripts/code_style.py @@ -41,9 +41,9 @@ def get_src_files() -> List[str]: Use git ls-files to get a list of the source files """ git_ls_files_cmd = ["git", "ls-files", - "*.[hc]", - "tests/suites/*.function", - "scripts/data_files/*.fmt"] + "*.[hc]", + "tests/suites/*.function", + "scripts/data_files/*.fmt"] result = subprocess.run(git_ls_files_cmd, stdout=subprocess.PIPE, \ stderr=STDERR_UTF8, check=False)