Skip to content

Commit

Permalink
Remove comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jtoceflow committed Dec 29, 2023
1 parent f644414 commit 00695af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webflow/oauth.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def authorize_url(
if scope is not OMIT and isinstance(scope, str):
params["scope"] = scope.value
elif scope is not OMIT:
params["scope"] = ",".join([s.value for s in scope]) # type: ignore
params["scope"] = " ".join([s.value for s in scope]) # type: ignore
return f"https://webflow.com/oauth/authorize?{urllib.parse.urlencode(params)}"


Expand Down

0 comments on commit 00695af

Please sign in to comment.