Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Breaking Change]: Remove save file func #159

Merged
merged 10 commits into from
May 25, 2022
Prev Previous commit
Next Next commit
refactor!: Remove * in get_historical_data args
  • Loading branch information
Milind220 committed May 23, 2022
commit 7cd17d2ee9c77e3ef6de5326542dc000841c47de
2 changes: 1 addition & 1 deletion src/ozone/ozone.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def get_city_station_options(self, city: str) -> pandas.DataFrame:
).sort_values(by=["score"], ascending=False)

def get_historical_data(
self, *, city: str = None, city_id: int = None
self, city: str = None, city_id: int = None
) -> pandas.DataFrame:
"""Get historical air quality data for a city

Expand Down