remove brackets

This commit is contained in:
geoffrey45
2022-05-10 13:23:21 +03:00
parent 301f07bda5
commit afaee8ec57
+1 -1
View File
@@ -58,7 +58,7 @@ def get_album_tracks():
def get_album_bio():
"""Returns the album bio for the given album."""
data = request.get_json()
fetch_bio = FetchAlbumBio(data["album"], data["albumartist"])()
fetch_bio = FetchAlbumBio(data["album"], data["albumartist"])
bio = fetch_bio()
if bio is None: