From 2264462ed6757cbefe2915a7ccdf9808f2ac8a30 Mon Sep 17 00:00:00 2001 From: James Barnsley Date: Fri, 28 Aug 2020 21:48:27 +1200 Subject: [PATCH] Removing unused variable --- mopidy_iris/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_iris/core.py b/mopidy_iris/core.py index abbc37ea7..371300e12 100755 --- a/mopidy_iris/core.py +++ b/mopidy_iris/core.py @@ -1030,7 +1030,7 @@ async def refresh_spotify_token(self, *args, **kwargs): "client_secret": self.config["spotify"]["client_secret"], "grant_type": "client_credentials", } - except (Exception) as e: + except (Exception): error = { "message": "Could not refresh Spotify token: invalid configuration" }