aboutsummaryrefslogtreecommitdiff
path: root/plugins/read_time/read_time.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/read_time/read_time.py')
-rw-r--r--plugins/read_time/read_time.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/plugins/read_time/read_time.py b/plugins/read_time/read_time.py
index 14139a7..ccd4a07 100644
--- a/plugins/read_time/read_time.py
+++ b/plugins/read_time/read_time.py
@@ -63,15 +63,12 @@ def calculate_wpm(text, data, language):
for word in text.split(' '):
if '<skip>' in word:
skipping = True
- print("Starting to skip")
if not skipping:
new_text += word + ' '
- print("Word: ", word)
if '</skip>' in word:
skipping = False
- print("Ending skipping")
read_time = len(new_text.split(' ')) / wpm