From 2b1b57ae6bb4abab85e74bbd13ba1a4161993c09 Mon Sep 17 00:00:00 2001 From: Timid Robot Zehta Date: Thu, 7 Mar 2024 10:04:59 -0800 Subject: [PATCH] update formatting per black --- analyze/data_analysis.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyze/data_analysis.py b/analyze/data_analysis.py index 485c87e2..4a16842e 100644 --- a/analyze/data_analysis.py +++ b/analyze/data_analysis.py @@ -101,7 +101,7 @@ def tags_frequency(csv_path, column_names): lowercase_words.extend([word.lower() for word in tag.split()]) # Join the lowercase words with a space separator - text = ' '.join(lowercase_words) + text = " ".join(lowercase_words) # Creating the word cloud tags_word_cloud = WordCloud(