From 93cf4fedf923719d2f0c93c1a7f00569120ea7e1 Mon Sep 17 00:00:00 2001 From: Niko Date: Fri, 7 Mar 2025 14:46:18 +0100 Subject: [PATCH] fix imports --- spotipy/oauth2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/spotipy/oauth2.py b/spotipy/oauth2.py index 7028588..371dd16 100644 --- a/spotipy/oauth2.py +++ b/spotipy/oauth2.py @@ -21,7 +21,8 @@ import requests from spotipy.cache_handler import CacheFileHandler, CacheHandler from spotipy.exceptions import SpotifyOauthError, SpotifyStateError -from spotipy.util import CLIENT_CREDS_ENV_VARS, REQUESTS_SESSION, get_host_port, normalize_scope +from spotipy.util import (CLIENT_CREDS_ENV_VARS, REQUESTS_SESSION, + get_host_port, normalize_scope) logger = logging.getLogger(__name__)