Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
reinvantveer committed Jun 30, 2023
1 parent 779f3c8 commit fe9cb3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analysis/kb_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ def main(config: Config) -> int:
return 0


def to_sorted_quarterly(file_type_montly_counts: PeriodicFiletypeCount) -> SortedFileCount:
def to_sorted_quarterly(file_type_monthly_counts: PeriodicFiletypeCount) -> SortedFileCount:
quarterly_counts: SortedFileCount = {}

# hack for the KB data
current_year = int(2014)

for file_type, monthly_counts in file_type_montly_counts.items():
for file_type, monthly_counts in file_type_monthly_counts.items():
quarterly_counts.setdefault(file_type, [])

time_sorted = list(monthly_counts.items())
Expand Down

0 comments on commit fe9cb3c

Please sign in to comment.