From 942ddf7a3c2dc5962a5541af700fc9c686bd4d50 Mon Sep 17 00:00:00 2001 From: bvandercar-vt Date: Wed, 3 Dec 2025 11:43:15 -0700 Subject: [PATCH] simple return type --- spotipy/oauth2.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spotipy/oauth2.py b/spotipy/oauth2.py index 97bd09e..b96e226 100644 --- a/spotipy/oauth2.py +++ b/spotipy/oauth2.py @@ -62,7 +62,7 @@ class SpotifyAuthBase: return normalize_scope(scope) @property - def client_id(self): + def client_id(self) -> str: return self._client_id @client_id.setter @@ -70,7 +70,7 @@ class SpotifyAuthBase: self._client_id = _ensure_value(val, "client_id") @property - def client_secret(self): + def client_secret(self) -> str: return self._client_secret @client_secret.setter @@ -78,7 +78,7 @@ class SpotifyAuthBase: self._client_secret = _ensure_value(val, "client_secret") @property - def redirect_uri(self): + def redirect_uri(self) -> str: return self._redirect_uri @redirect_uri.setter