diff --git a/src/webflow/oauth.py b/src/webflow/oauth.py index 4de369b..99f7e90 100644 --- a/src/webflow/oauth.py +++ b/src/webflow/oauth.py @@ -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)}"