Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
IceS2 committed Jun 20, 2024
1 parent f1666d8 commit 9bdfbc2
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,9 @@ def store_airflow_pipeline_config(

logger.info(f"Saving file to {dag_config_file_path}")
with open(dag_config_file_path, "w") as outfile:
outfile.write(self.ingestion_pipeline.model_dump_json(exclude_defaults=False))
outfile.write(
self.ingestion_pipeline.model_dump_json(exclude_defaults=False)
)

return {"workflow_config_file": str(dag_config_file_path)}

Expand Down

0 comments on commit 9bdfbc2

Please sign in to comment.