Skip to content

Commit 824afb2

Browse files
committed
Preprocess: Fix refactor error not caught by tests
1 parent 8b1e5fa commit 824afb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

preprocess.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def main():
4747
with concurrent.futures.ProcessPoolExecutor() as executor:
4848
futures = [executor.submit(preprocess.preprocess_html_file, root, fn,
4949
rename_map)
50-
for fn in enumerate(file_list)]
50+
for fn in file_list]
5151

5252
for future in futures:
5353
output = future.result()

0 commit comments

Comments
 (0)