Skip to content

Commit

Permalink
Merge pull request #162 from paulzierep/fix-linting-2
Browse files Browse the repository at this point in the history
Fix linting 2
  • Loading branch information
nsoranzo authored Aug 15, 2024
2 parents 571c231 + cf59206 commit 221dbb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/create_wordcloud.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def prepare_data(table_path: str, name_col: str, stat_col: str) -> Dict:
table[stat_col] = table[stat_col].fillna(value=0)

# create dictionary with key being the name and value the stat/counts
freq = pd.Series(table[stat_col].values, index=table[name_col]).to_dict()
freq: Dict = pd.Series(table[stat_col].values, index=table[name_col]).to_dict()

return freq

Expand Down

0 comments on commit 221dbb8

Please sign in to comment.