potiuk commented on code in PR #31171:
URL: https://github.com/apache/airflow/pull/31171#discussion_r1196190069


##########
airflow/providers/google/cloud/hooks/bigquery.py:
##########
@@ -61,6 +60,11 @@
 from airflow.providers.google.cloud.utils.bigquery import bq_cast
 from airflow.providers.google.common.consts import CLIENT_INFO
 from airflow.providers.google.common.hooks.base_google import 
GoogleBaseAsyncHook, GoogleBaseHook, get_field
+
+try:
+    from airflow.utils.hashlib_wrapper import md5
+except ModuleNotFoundError:

Review Comment:
   NIT: We should also add the condition when to remove this try/except
   
   ```suggestion
   except ModuleNotFoundError:
       # Remove when Airflow providers min Airlfow version is "2.7.0"
   ```



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