Skip to content

Commit

Permalink
fix ymd -> yyyy_mm_dd typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JGreenlee committed May 29, 2024
1 parent 1f00434 commit 5c20021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emission/storage/decorations/local_date_queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,5 +58,5 @@ def yyyy_mm_dd_to_local_date(ymd: str) -> ecwl.LocalDate:

def get_yyyy_mm_dd_range_query(field_name, start_ymd: str, end_ymd: str) -> dict:
start_local_date = yyyy_mm_dd_to_local_date(start_ymd)
end_local_date = ymd_to_local_date(end_ymd)
end_local_date = yyyy_mm_dd_to_local_date(end_ymd)
return get_range_query(field_name, start_local_date, end_local_date)

0 comments on commit 5c20021

Please sign in to comment.