Skip to content

Commit

Permalink
Ignore mypy error
Browse files Browse the repository at this point in the history
cosmos/airflow/graph.py:224: error: Call to untyped function (unknown) in typed context  [no-untyped-call]

https://github.com/astronomer/astronomer-cosmos/actions/runs/6506710243/job/17672777673\?pr\=503
  • Loading branch information
tatiana committed Oct 13, 2023
1 parent 1c426d9 commit 945f62f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos/airflow/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ def build_airflow_graph(
"Its syntax and behavior can be changed before a major release."
)
logger.debug(f"Converting <{node.unique_id}> using <{conversion_function.__name__}>")
task_or_group = conversion_function(
task_or_group = conversion_function( # type: ignore
dag=dag,
task_group=task_group,
dbt_project_name=dbt_project_name,
Expand Down

0 comments on commit 945f62f

Please sign in to comment.