From 7dc6293ccafb818d6365a96eca6716636898ff55 Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Tue, 14 May 2024 08:07:15 -0400 Subject: [PATCH] fix lint issue --- tools/decomplint/decomplint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/decomplint/decomplint.py b/tools/decomplint/decomplint.py index 6c7c1b4c..4ff28168 100755 --- a/tools/decomplint/decomplint.py +++ b/tools/decomplint/decomplint.py @@ -81,6 +81,7 @@ def process_files(files, module=None): def main(): args = parse_args() + files_to_check = [] if os.path.isdir(args.target): files_to_check = list(walk_source_dir(args.target)) elif os.path.isfile(args.target) and is_file_cpp(args.target):