Skip to content

Commit

Permalink
fix: package namespace path
Browse files Browse the repository at this point in the history
  • Loading branch information
donotpush committed Dec 5, 2024
1 parent ddebcf2 commit fe5cf1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/databricks/sql_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def __init__(

def open_connection(self) -> DatabricksSqlConnection:
conn_params = self.credentials.to_connector_params()
self._conn = databricks_lib.sql.connect(
self._conn = databricks_lib.connect(
**conn_params, schema=self.dataset_name, use_inline_params="silent"
)
return self._conn
Expand Down

0 comments on commit fe5cf1e

Please sign in to comment.