From afaee8ec5735897b198f6ed19be15e65cfe1ac94 Mon Sep 17 00:00:00 2001 From: geoffrey45 Date: Tue, 10 May 2022 13:23:21 +0300 Subject: [PATCH] remove brackets --- server/app/api/album.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/app/api/album.py b/server/app/api/album.py index a7eef531..ada2555f 100644 --- a/server/app/api/album.py +++ b/server/app/api/album.py @@ -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: