mik-laj commented on a change in pull request #17741:
URL: https://github.com/apache/airflow/pull/17741#discussion_r695897882
##########
File path: airflow/providers/snowflake/operators/snowflake.py
##########
@@ -125,3 +126,284 @@ def execute(self, context: Any) -> None:
if self.do_xcom_push:
return execution_info
+
+
+class _SnowflakeDbHookMixin:
+ def get_db_hook(self) -> SnowflakeHook:
+ """
+ Create and return SnowflakeHook.
+ :return: a SnowflakeHook instance.
Review comment:
```suggestion
:return: a SnowflakeHook instance.
```
this is needed to render the documentation properly.
--
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]