uranusjr commented on code in PR #30975: URL: https://github.com/apache/airflow/pull/30975#discussion_r1184126558
########## airflow/providers/google/cloud/operators/dataflow.py: ########## @@ -28,6 +28,7 @@ from airflow import AirflowException from airflow.compat.functools import cached_property +from airflow.exceptions import AirflowProviderDeprecationWarning Review Comment: ```suggestion from airflow.compat.functools import cached_property from airflow.exceptions import AirflowException, AirflowProviderDeprecationWarning ``` ########## tests/providers/amazon/aws/transfers/test_dynamodb_to_s3.py: ########## @@ -25,6 +25,7 @@ import pytest from airflow import DAG +from airflow.exceptions import AirflowProviderDeprecationWarning from airflow.models import DagRun, TaskInstance Review Comment: ```suggestion from airflow.exceptions import AirflowProviderDeprecationWarning from airflow.models import DAG, DagRun, TaskInstance ``` ########## airflow/providers/google/cloud/hooks/vertex_ai/auto_ml.py: ########## @@ -65,6 +65,7 @@ from google.cloud.aiplatform_v1.types import TrainingPipeline from airflow import AirflowException +from airflow.exceptions import AirflowProviderDeprecationWarning Review Comment: ```suggestion from airflow.exceptions import AirflowException, AirflowProviderDeprecationWarning ``` ########## airflow/providers/dbt/cloud/sensors/dbt.py: ########## @@ -21,6 +21,7 @@ from typing import TYPE_CHECKING, Any from airflow import AirflowException +from airflow.exceptions import AirflowProviderDeprecationWarning Review Comment: ```suggestion from airflow.exceptions import AirflowException, AirflowProviderDeprecationWarning ``` -- 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: commits-unsubscr...@airflow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org