From 945f62fb3454c596e5b314c39d6d13e6a5927cdd Mon Sep 17 00:00:00 2001 From: Tatiana Al-Chueyr Date: Fri, 13 Oct 2023 10:58:20 +0100 Subject: [PATCH] Ignore mypy error 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 --- cosmos/airflow/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmos/airflow/graph.py b/cosmos/airflow/graph.py index 4bd803683..c4a0aa61a 100644 --- a/cosmos/airflow/graph.py +++ b/cosmos/airflow/graph.py @@ -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,