Skip to content

Commit d0b1b76

Browse files
authored
Convert context to tuple
1 parent 745b924 commit d0b1b76

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def get_completion_progress() -> (
7373
template = Template(Path('template.html').read_text())
7474

7575
output = template.render(
76-
completion_progress=get_completion_progress(), generation_time=generation_time
76+
completion_progress=tuple(get_completion_progress()), generation_time=generation_time
7777
)
7878

7979
Path('index.html').write_text(output)

0 commit comments

Comments
 (0)