Browse Source

optimize scanner.py

pull/25/head
Dr.Lt.Data 1 year ago
parent
commit
7a58ad830f
  1. 5
      scanner.py

5
scanner.py

@ -41,11 +41,6 @@ def get_py_file_paths(dirname):
if file.endswith(".py"):
file_path = os.path.join(root, file)
file_paths.append(file_path)
for subdir in dirs:
subdir = os.path.join(dirname, subdir)
sub_files = get_py_file_paths(subdir)
file_paths.extend(sub_files)
return file_paths

Loading…
Cancel
Save