summaryrefslogtreecommitdiff
path: root/file_utils.py
diff options
context:
space:
mode:
authorScott Gasch <[email protected]>2021-07-08 19:44:27 -0700
committerScott Gasch <[email protected]>2021-07-08 19:44:27 -0700
commit3bc4daf1edc121cd633429187392227f2fa61885 (patch)
tree0663cf35f562c7023c914454c85050d502ad9f3c /file_utils.py
parent5fd30ef12c100cbb936aa0fdb515b67cff4064db (diff)
Lots of changes.
Diffstat (limited to 'file_utils.py')
-rw-r--r--file_utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_utils.py b/file_utils.py
index 7cc8b63..7108d6a 100644
--- a/file_utils.py
+++ b/file_utils.py
@@ -244,5 +244,5 @@ def get_files_recursive(directory: str):
for filename in get_files(directory):
yield filename
for subdir in get_directories(directory):
- for filename in get_files_recursive(subdir):
- yield filename
+ for file_or_directory in get_files_recursive(subdir):
+ yield file_or_directory