You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2021/11/11 19:07:08 UTC

[GitHub] [airflow] dstandish commented on a change in pull request #19530: Do not require all extras for SalesforceHook

dstandish commented on a change in pull request #19530:
URL: https://github.com/apache/airflow/pull/19530#discussion_r747749942



##########
File path: airflow/providers/salesforce/hooks/salesforce.py
##########
@@ -27,6 +27,11 @@
 import time
 from typing import Any, Dict, Iterable, List, Optional
 
+try:
+    from functools import cached_property
+except ImportError:
+    from cached_property import cached_property
+

Review comment:
       yeah probably best to just switch that back.  i'll connect with jarek re guidance going forward.  thank you




-- 
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-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org