We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39533f1 commit 7678fc0Copy full SHA for 7678fc0
1 file changed
containers/airflow/dags/brasil/sinan.py
@@ -155,9 +155,9 @@ def extract_parquets(**kwargs) -> dict:
155
)
156
157
return dict(
158
- pqs_to_insert=extract_pqs('to_insert'),
159
- pqs_to_finals=extract_pqs('to_finals'),
160
- pqs_to_update=extract_pqs('to_update'),
+ pqs_to_insert=list(extract_pqs('to_insert')),
+ pqs_to_finals=list(extract_pqs('to_finals')),
+ pqs_to_update=list(extract_pqs('to_update')),
161
162
163
@task(task_id='first_insertion', trigger_rule='all_done')
0 commit comments