Merge pull request #171 from sesseor/patch-1

Update metadata.py
This commit is contained in:
碧舞すみほ 2023-01-03 09:33:08 +09:00 committed by GitHub
commit 29ff02882b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ class AlbumId(SpotifyId):
if matcher is not None:
album_id = matcher.group(1)
return AlbumId(util.bytes_to_hex(AlbumId.base62.decode(album_id.encode())))
raise TypeError("Not a Spotify album ID: {}.f".format(uri))
raise TypeError("Not a Spotify album ID: {}.".format(uri))
@staticmethod
def from_base62(base62: str) -> AlbumId: