From 2ab985a3c8f90b86ed7988a051e3518bc9ebc350 Mon Sep 17 00:00:00 2001 From: Stephane Bruckert Date: Thu, 16 Jan 2020 03:55:50 +0000 Subject: [PATCH] Lint --- tests/tests.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/tests.py b/tests/tests.py index abb5aa8..cccab6f 100644 --- a/tests/tests.py +++ b/tests/tests.py @@ -13,6 +13,7 @@ from spotipy import ( SpotifyClientCredentials ) + class TestSpotipy(unittest.TestCase): """ @@ -51,7 +52,8 @@ class TestSpotipy(unittest.TestCase): self.username = os.getenv(CCEV['client_username']) self.scope = 'user-library-read' self.token = prompt_for_user_token(self.username, scope=self.scope) - self.spotify = Spotify(client_credentials_manager=SpotifyClientCredentials()) + self.spotify = Spotify( + client_credentials_manager=SpotifyClientCredentials()) def test_artist_urn(self): artist = self.spotify.artist(self.radiohead_urn)