Skip to content

Commit

Permalink
fix(ingestion/airflow-plugin): fixed linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
dushayntAW committed Jun 9, 2024
1 parent 4c1ed05 commit 071b9ec
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,9 @@ def on_dag_start(self, dag_run: "DagRun") -> None:
builder.make_data_job_urn_with_flow(str(flow_urn), task.task_id)
)

obsolete_pipelines = set(filtered_ingested_dataflow_urns) - set(airflow_flow_urns)
obsolete_pipelines = set(filtered_ingested_dataflow_urns) - set(
airflow_flow_urns
)
obsolete_tasks = set(filtered_ingested_datajob_urns) - set(airflow_job_urns)

obsolete_urns = obsolete_pipelines.union(obsolete_tasks)
Expand Down

0 comments on commit 071b9ec

Please sign in to comment.