Skip to content

Commit 99c82d1

Browse files
committed
Only get the result once
1 parent cbb6c14 commit 99c82d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Doc/tools/check-html-ids.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def gather_ids(htmldir, *, verbose_print):
6161
for relative_path, future in tasks.items():
6262
verbose_print(relative_path)
6363
ids = future.result()
64-
ids_by_page[str(relative_path)] = future.result()
64+
ids_by_page[str(relative_path)] = ids
6565
verbose_print(f' - {len(ids)} ids found')
6666

6767
common = set.intersection(*ids_by_page.values())

0 commit comments

Comments
 (0)