From 2633954304170abffa6e75e9f6866d91392b01f8 Mon Sep 17 00:00:00 2001 From: George Sittas Date: Mon, 1 Jul 2024 16:57:50 +0300 Subject: [PATCH] Chore: fix typo in SQLMeshTrinoOperator.get_db_hook docstring --- sqlmesh/schedulers/airflow/operators/trino.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlmesh/schedulers/airflow/operators/trino.py b/sqlmesh/schedulers/airflow/operators/trino.py index 77666005d..14aec5743 100644 --- a/sqlmesh/schedulers/airflow/operators/trino.py +++ b/sqlmesh/schedulers/airflow/operators/trino.py @@ -30,7 +30,7 @@ def __init__( self._hook_params = kwargs def get_db_hook(self) -> TrinoHook: - """Gets the Postgres Hook which contains the DB API connection object""" + """Gets the Trino Hook which contains the DB API connection object""" return TrinoHook(self._trino_conn_id, **self._hook_params) def execute(self, context: Context) -> None: