Skip to content

Commit

Permalink
fix typing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
benc-db committed Feb 18, 2025
1 parent 3426ea1 commit 7a5dd4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt/adapters/databricks/connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ class DatabricksConnectionManager(SparkConnectionManager):

def __init__(self, profile: AdapterRequiredConfig, mp_context: SpawnContext):
super().__init__(profile, mp_context)
self._api_client = None
self._api_client: Optional[DatabricksApiClient] = None
self.threads_compute_connections: dict[
Hashable, dict[Hashable, DatabricksDBTConnection]
] = {}
Expand Down

0 comments on commit 7a5dd4a

Please sign in to comment.