eladkal commented on code in PR #49396:
URL: https://github.com/apache/airflow/pull/49396#discussion_r2048694180
##########
providers/standard/tests/unit/standard/utils/test_sensor_helper.py:
##########
@@ -42,7 +41,11 @@
from tests_common.test_utils.version_compat import AIRFLOW_V_3_0_PLUS
if AIRFLOW_V_3_0_PLUS:
+ from airflow.providers.standard.operators.empty import EmptyOperator
from airflow.utils.types import DagRunTriggeredByType
+else:
+ # TODO: Remove this import when we drop support for Airflow 2
+ from airflow.operators.empty import EmptyOperator # type: ignore[no-redef]
Review Comment:
standard provider is compatible with 2.9 which is the min Airflow version of
providers
You can just import directly from provider without checking airflow version
--
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]