fix second chart

This commit is contained in:
Nemo 2024-07-11 14:24:30 +05:30
parent 57a83dd989
commit 10922681e2
3 changed files with 5 additions and 3 deletions

View File

@ -19,4 +19,6 @@ exclude:
- _config.yml
- 404.html
- CITATION.cff
- "*.py"
- "*.py"
sass:
quiet_deps: true

View File

@ -59,7 +59,7 @@ def main():
repo = pygit2.Repository(repo_path)
# Prepare CSV output
output = [['date', 'totalAvailablePowerbanks']]
output = [['date', 'count']]
# Process every 5th commit in parallel
with concurrent.futures.ThreadPoolExecutor() as executor:

View File

@ -1,4 +1,4 @@
date,totalAvailablePowerbanks
date,count
2022-03-05,2048
2022-03-06,1969
2022-03-07,1789

1 date totalAvailablePowerbanks count
2 2022-03-05 2048
3 2022-03-06 1969
4 2022-03-07 1789