amoghrajesh commented on code in PR #51873: URL: https://github.com/apache/airflow/pull/51873#discussion_r2179054473
########## providers/alibaba/src/airflow/providers/alibaba/cloud/hooks/oss.py: ########## @@ -27,7 +27,11 @@ from oss2.exceptions import ClientError from airflow.exceptions import AirflowException -from airflow.hooks.base import BaseHook + +try: + from airflow.sdk import BaseHook +except ImportError: + from airflow.hooks.base import BaseHook # type: ignore Review Comment: Yep, will investigate here: https://github.com/apache/airflow/issues/52676 ########## providers/amazon/src/airflow/providers/amazon/aws/hooks/base_aws.py: ########## @@ -57,12 +57,16 @@ AirflowNotFoundException, AirflowProviderDeprecationWarning, ) -from airflow.hooks.base import BaseHook from airflow.providers.amazon.aws.utils.connection_wrapper import AwsConnectionWrapper from airflow.providers.amazon.aws.utils.identifiers import generate_uuid from airflow.providers.amazon.aws.utils.suppress import return_on_error from airflow.providers.common.compat.version_compat import AIRFLOW_V_3_0_PLUS from airflow.providers_manager import ProvidersManager + +try: + from airflow.sdk import BaseHook +except ImportError: + from airflow.hooks.base import BaseHook # type: ignore Review Comment: Will investigate and handle here: https://github.com/apache/airflow/issues/52676 -- 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]
