uranusjr commented on code in PR #59087:
URL: https://github.com/apache/airflow/pull/59087#discussion_r2634542072


##########
providers/standard/tests/unit/standard/decorators/test_python.py:
##########
@@ -24,18 +25,27 @@
 
 from airflow.models.taskinstance import TaskInstance
 from airflow.models.taskmap import TaskMap
-from airflow.providers.common.compat.sdk import AirflowException, XComNotFound
+from airflow.providers.common.compat.sdk import AirflowException, 
XComNotFound, task
 
 from tests_common.test_utils.version_compat import (
     AIRFLOW_V_3_0_1,
     AIRFLOW_V_3_0_PLUS,
     AIRFLOW_V_3_1_PLUS,
+    AIRFLOW_V_3_2_PLUS,
     XCOM_RETURN_KEY,
 )
 from unit.standard.operators.test_python import BasePythonTest
 
 if AIRFLOW_V_3_0_PLUS:
-    from airflow.sdk import DAG, BaseOperator, TaskGroup, XComArg, setup, task 
as task_decorator, teardown
+    from airflow.sdk import (
+        DAG,
+        BaseOperator,
+        TaskGroup,
+        XComArg,
+        setup,
+        task as task_decorator,
+        teardown,
+    )

Review Comment:
   This doesn’t change right? (Just to make sure I’m not reading this wrong)



-- 
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]

Reply via email to