From 572195617b3d63f05f4083a4067fe6eb0dfe448b Mon Sep 17 00:00:00 2001 From: Andrii Yurchuk Date: Tue, 14 Feb 2023 15:00:59 +0100 Subject: [PATCH] Fix SpotifyPKCE docstring (#942) --- spotipy/oauth2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spotipy/oauth2.py b/spotipy/oauth2.py index 631a865..125c87c 100644 --- a/spotipy/oauth2.py +++ b/spotipy/oauth2.py @@ -629,7 +629,7 @@ class SpotifyPKCE(SpotifyAuthBase): """ Implements PKCE Authorization Flow for client apps This auth manager enables *user and non-user* endpoints with only - a client secret, redirect uri, and username. When the app requests + a client ID, redirect URI, and username. When the app requests an access token for the first time, the user is prompted to authorize the new client app. After authorizing the app, the client app is then given both access and refresh tokens. This is the