Skip to content

Commit

Permalink
fix python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mgyucht committed Oct 7, 2024
1 parent 9b778fa commit 4970d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion databricks/sdk/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,7 +539,7 @@ def __init__(self,
client_id: str,
redirect_url: str = None,
client_secret: str = None,
scopes: list[str] = None) -> None:
scopes: List[str] = None) -> None:
self._host = host
self._client_id = client_id
self._oidc_endpoints = oidc_endpoints
Expand Down

0 comments on commit 4970d70

Please sign in to comment.