Skip to content

Commit

Permalink
Improve example
Browse files Browse the repository at this point in the history
  • Loading branch information
bolkedebruin committed Oct 27, 2023
1 parent 836131d commit 2e1cba6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airflow/example_dags/tutorial_objectstorage.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ def get_air_quality_data(**kwargs) -> ObjectStoragePath:
"""
#### Get Air Quality Data
This task gets air quality data from the Finnish Meteorological Institute's
open data API. The data is saved as json.
open data API. The data is saved as parquet.
"""
execution_date = kwargs["logical_date"]
start_time = execution_date - pendulum.duration(days=1)
start_time = kwargs["data_interval_start"]

params = {
"format": "json",
Expand Down

0 comments on commit 2e1cba6

Please sign in to comment.