Skip to content

Commit

Permalink
fix: auth_type optional
Browse files Browse the repository at this point in the history
  • Loading branch information
donotpush committed Dec 5, 2024
1 parent f92507f commit 9c25d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dlt/destinations/impl/databricks/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class DatabricksCredentials(CredentialsConfiguration):
server_hostname: str = None
http_path: str = None
access_token: Optional[TSecretStrValue] = None
auth_type: str = None
auth_type: Optional[str] = None
client_id: Optional[TSecretStrValue] = None
client_secret: Optional[TSecretStrValue] = None
http_headers: Optional[Dict[str, str]] = None
Expand Down

0 comments on commit 9c25d72

Please sign in to comment.