Skip to content

Commit 994c330

Browse files
Fixup
1 parent 133668a commit 994c330

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

generate.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
import build_status
1616
import contribute
1717
from completion import branches_from_devguide, get_completion, TranslatorsData
18+
from counts import get_counts
1819
from repositories import Language, get_languages_and_repos
1920

2021
generation_time = datetime.now(timezone.utc)
@@ -99,11 +100,8 @@ class LanguageProjectData:
99100
logging.info(f'starting at {generation_time}')
100101
Path('build').mkdir(parents=True, exist_ok=True)
101102

102-
# completion_progress = list(get_completion_progress())
103-
# counts = get_counts(Path('clones', 'cpython', 'Doc', 'build', 'gettext'))
104-
from data import completion_progress
105-
106-
counts = 1, 1
103+
completion_progress = list(get_completion_progress())
104+
counts = get_counts(Path('clones', 'cpython', 'Doc', 'build', 'gettext'))
107105

108106
env = Environment(loader=FileSystemLoader('templates'))
109107
index = env.get_template('index.html.jinja').render(

0 commit comments

Comments
 (0)