amoghrajesh commented on code in PR #46231: URL: https://github.com/apache/airflow/pull/46231#discussion_r1939031839
########## providers/tests/system/microsoft/azure/example_adf_run_pipeline.py: ########## @@ -22,12 +22,12 @@ from airflow.models import DAG from airflow.models.xcom_arg import XComArg +from airflow.providers.microsoft.azure.operators.data_factory import AzureDataFactoryRunPipelineOperator +from airflow.providers.microsoft.azure.sensors.data_factory import AzureDataFactoryPipelineRunStatusSensor # Ignore missing args provided by default_args # mypy: disable-error-code="call-arg" -from airflow.operators.empty import EmptyOperator -from airflow.providers.microsoft.azure.operators.data_factory import AzureDataFactoryRunPipelineOperator -from airflow.providers.microsoft.azure.sensors.data_factory import AzureDataFactoryPipelineRunStatusSensor +from airflow.providers.standard.operators.empty import EmptyOperator Review Comment: I dont think we need to move it out, seems like its correct. -- 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]
