Skip to content

Commit

Permalink
remove print statement:
Browse files Browse the repository at this point in the history
  • Loading branch information
xehu committed Oct 22, 2024
1 parent e39b898 commit 09d5e1e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/team_comm_tools/features/readability.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ def count_difficult_words(text, easy_words):
# recall that words are already pre-processed; substitute punctuation here for words only
words = re.sub(r"[^a-zA-Z0-9 ]+", '',text).split()
remaining_words = [i for i in words if not i in easy_words]
# print(remaining_words)

for word in remaining_words:
# words with more than 3 syllables are difficult
Expand Down

0 comments on commit 09d5e1e

Please sign in to comment.