From a15a8d95485d4b7067ae3e07eaab66f6e6242125 Mon Sep 17 00:00:00 2001 From: Nick Steel Date: Wed, 20 Dec 2023 12:28:57 +0000 Subject: [PATCH] flake8 fix (#369) --- mopidy_spotify/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mopidy_spotify/web.py b/mopidy_spotify/web.py index d6e99cd8..23da1d0d 100644 --- a/mopidy_spotify/web.py +++ b/mopidy_spotify/web.py @@ -409,7 +409,7 @@ def __init__(self, *, client_id, client_secret, proxy_config): def get_one(self, path, *args, **kwargs): _trace(f"Fetching page {path!r}") - result = self.get(path, cache=self._cache, *args, **kwargs) + result = self.get(path, self._cache, *args, **kwargs) result.increase_expiry(self._extra_expiry) return result