Skip to content

Commit

Permalink
Merge pull request #70 from creativecommons/update-format
Browse files Browse the repository at this point in the history
update formatting per black
  • Loading branch information
TimidRobot authored Mar 7, 2024
2 parents 7c58cec + 2b1b57a commit 876c6ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyze/data_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 876c6ae

Please sign in to comment.