Fix number of builds on wiki page in forks

This commit is contained in:
Ayaz Salikhov
2025-03-28 14:58:28 +00:00
parent 19bfa74b5f
commit e5fd8bd0b3

View File

@@ -39,7 +39,7 @@ def calculate_monthly_stat(
year_month_file: YearMonthFile, year_month_date: datetime.date year_month_file: YearMonthFile, year_month_date: datetime.date
) -> Statistics: ) -> Statistics:
builds = sum( builds = sum(
"jupyter/base-notebook" in line and "aarch64" not in line "/base-notebook" in line and "aarch64" not in line
for line in year_month_file.content.split("\n") for line in year_month_file.content.split("\n")
) )