Steven Tang
commited on
Commit
·
fbf0d37
1
Parent(s):
57ff211
Fix typo
Browse files- run_batches.py +1 -1
run_batches.py
CHANGED
@@ -63,7 +63,7 @@ def main():
|
|
63 |
raise e
|
64 |
|
65 |
output_paths = output_temp_dir.rglob("*")
|
66 |
-
output_files = set(file.name for file in
|
67 |
for output_path, output_file in zip(output_paths, output_files):
|
68 |
shutil.copy(output_path, output_dir)
|
69 |
input_files.remove(output_file)
|
|
|
63 |
raise e
|
64 |
|
65 |
output_paths = output_temp_dir.rglob("*")
|
66 |
+
output_files = set(file.name for file in output_paths)
|
67 |
for output_path, output_file in zip(output_paths, output_files):
|
68 |
shutil.copy(output_path, output_dir)
|
69 |
input_files.remove(output_file)
|