Run pyupgrade to Python 3.7+

This commit is contained in:
Stein Magnus Jodal 2020-03-08 12:30:14 +01:00
parent 008527f115
commit b067352a00
7 changed files with 13 additions and 16 deletions

View file

@ -7,7 +7,7 @@ logger = logging.getLogger(__name__)
class SubidyPlaylistsProvider(backend.PlaylistsProvider):
def __init__(self, *args, **kwargs):
super(SubidyPlaylistsProvider, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)
self.subsonic_api = self.backend.subsonic_api
self.playlists = []
self.refresh()