From 7f91c162667feec9b1a46bd2ee0b8fdfd0997a2b Mon Sep 17 00:00:00 2001 From: bvandercar-vt Date: Tue, 2 Dec 2025 15:29:11 -0700 Subject: [PATCH] style: whitespace --- spotipy/oauth2.py | 2 +- spotipy/util.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/spotipy/oauth2.py b/spotipy/oauth2.py index 970a9ea..ffa6258 100644 --- a/spotipy/oauth2.py +++ b/spotipy/oauth2.py @@ -138,7 +138,7 @@ class SpotifyClientCredentials(SpotifyAuthBase): self, client_id: Optional[str] = None, client_secret: Optional[str] = None, - proxies: Optional[Any] = None, + proxies: Optional[Any] = None, requests_session: Union[requests.Session, bool] = True, requests_timeout: Optional[int] = None, cache_handler: Optional[CacheHandler] = None, diff --git a/spotipy/util.py b/spotipy/util.py index 1de82e3..fe909ce 100644 --- a/spotipy/util.py +++ b/spotipy/util.py @@ -137,6 +137,7 @@ def get_host_port(netloc: str): ScopeArgType = Union[str, StrListOrTuple] + def normalize_scope(scope: Optional[ScopeArgType]) -> Union[str, None]: """Normalize the scope to verify that it is a list or tuple. A string input will split the string by commas to create a list of scopes.