Skip to content

Commit

Permalink
flake8 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kingosticks authored Dec 20, 2023
1 parent f62d491 commit 53daac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mopidy_spotify/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 53daac8

Please sign in to comment.