From b1a7c891151298d856d0293e0e86ef642c3b4bf6 Mon Sep 17 00:00:00 2001 From: nathom Date: Sat, 24 Jul 2021 11:43:44 -0700 Subject: [PATCH] Fix typo --- streamrip/media.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/streamrip/media.py b/streamrip/media.py index 43ecf68..b9a7543 100644 --- a/streamrip/media.py +++ b/streamrip/media.py @@ -442,7 +442,7 @@ class Track(Media): :param pos: index of the track :param client: qopy client object :type client: Client - :raises IndexError + :raises: IndexError """ meta = TrackMetadata(album=album, track=track, source=client.source) return cls(client=client, meta=meta, id=track["id"], part_of_tracklist=True)