Skip to content

Commit

Permalink
Update start and end dates for API request
Browse files Browse the repository at this point in the history
  • Loading branch information
philsv committed Aug 1, 2024
1 parent eaa50e3 commit f22ca98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions myeia/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ def get_series_via_route(
series: Union[str, list],
frequency: str,
facet: Union[str, list] = "series",
start_date: str = str(date.today() - relativedelta(months=15)),
end_date: str = str(date.today() - relativedelta(months=-15)),
start_date: str = str(date.today() - relativedelta(months=840)),
end_date: str = str(date.today() - relativedelta(months=-60)),
data_identifier: Optional[str] = "value",
offset: int = 0,
limit: int = 5000,
Expand Down

0 comments on commit f22ca98

Please sign in to comment.