Skip to content

Commit

Permalink
Cast tags to a list when generating dags
Browse files Browse the repository at this point in the history
  • Loading branch information
augusto-herrmann committed Sep 2, 2024
1 parent 9a702fd commit ac6fc06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dou_dag_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ def create_dag(self, specs: DAGConfig, config_file: str) -> DAG:
doc_md=doc_md,
catchup=False,
params={"trigger_date": "2022-01-02T12:00"},
tags=specs.tags,
tags=list(specs.tags),
)

with dag:
Expand Down

0 comments on commit ac6fc06

Please sign in to comment.