ephraimbuddy commented on code in PR #54471:
URL: https://github.com/apache/airflow/pull/54471#discussion_r2273693835
##########
providers/celery/src/airflow/providers/celery/version_compat.py:
##########
@@ -31,7 +31,7 @@ def get_base_airflow_version_tuple() -> tuple[int, int, int]:
try:
from airflow.sdk.execution_time.timeout import timeout
except ImportError:
- from airflow.utils.timeout import timeout # type: ignore[assignment]
+ from airflow.utils.timeout import timeout # type:
ignore[assignment,no-redef]
Review Comment:
```suggestion
from airflow.utils.timeout import timeout # type:
ignore[attr-defined,no-redef]
```
--
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]