Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Fix] Decouple OAuth functionality from Config #784

Merged
merged 19 commits into from
Oct 21, 2024
Prev Previous commit
fix
  • Loading branch information
mgyucht committed Oct 18, 2024
commit e9333efbcc37ff5b951b2765166887872d4ae850
3 changes: 1 addition & 2 deletions databricks/sdk/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,7 @@ def __init__(self,
self._scopes = scopes

@staticmethod
def from_host(self,
host: str,
def from_host(host: str,
client_id: str,
redirect_url: str,
*,
Expand Down
Loading