From 84a29771ba0b1464961b179130d40932456f3b1a Mon Sep 17 00:00:00 2001 From: digitalec <31838395+digitalec@users.noreply.github.com> Date: Wed, 5 Oct 2022 22:28:21 -0400 Subject: [PATCH] Fixed #75 --- deemon/utils/dataprocessor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deemon/utils/dataprocessor.py b/deemon/utils/dataprocessor.py index aadd739..dcf5757 100644 --- a/deemon/utils/dataprocessor.py +++ b/deemon/utils/dataprocessor.py @@ -46,7 +46,7 @@ def csv_to_list(all_artists) -> list: """ Separate artists and replace delimiter to find artists containing commas in their name """ - all_artists = [x for x in all_artists] + all_artists = [str(x) for x in all_artists] processed_artists = [] for artist in all_artists: if artist[-1] == ',':