Skip to content

Commit

Permalink
fix(api): last typo (#2284)
Browse files Browse the repository at this point in the history
fix(api): last typo

It is datetime, not datatime. I'm losing my edge

Last one! I promise… Also I love that mypy doesn't give a crap about the named parameters…

Reviewed-by: Laura Barcziová
  • Loading branch information
softwarefactory-project-zuul[bot] authored Dec 13, 2023
2 parents ceff2e6 + 74625d3 commit 731496a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packit_service/service/api/usage.py
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ def _get_past_usage_data(datetime_from=None, datetime_to=None, top=5):
top_all_project = 100000

raw_result = get_usage_data(
datatime_from=datetime_from, datetime_to=datetime_to, top=top_all_project
datetime_from=datetime_from, datetime_to=datetime_to, top=top_all_project
)
return response_maker(
{
Expand Down

0 comments on commit 731496a

Please sign in to comment.