kyungjunleeme commented on code in PR #53584:
URL: https://github.com/apache/airflow/pull/53584#discussion_r2235171580
##########
providers/databricks/src/airflow/providers/databricks/plugins/databricks_workflow.py:
##########
@@ -51,11 +45,15 @@
from airflow.utils.context import Context
if AIRFLOW_V_3_0_PLUS:
+ from airflow.providers.fab.www import auth
from airflow.sdk import BaseOperatorLink
+ from airflow.sdk.definitions.taskgroup import TaskGroup
from airflow.sdk.execution_time.xcom import XCom
else:
- from airflow.models import XCom
+ from airflow.models import XCom # type: ignore[no-redef]
from airflow.models.baseoperatorlink import BaseOperatorLink # type:
ignore[no-redef]
+ from airflow.utils.task_group import TaskGroup # type: ignore[no-redef]
+ from airflow.www import auth # type: ignore[no-redef]
Review Comment:
I'm not entirely sure, but if I remember correctly, weren't we recently
working on removing # type: ignore[no-redef] comments from the codebase?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]