rodrigomasini commited on
Commit
fc906c5
·
verified ·
1 Parent(s): 66cb9ef

Update app_v1.py

Browse files
Files changed (1) hide show
  1. app_v1.py +1 -1
app_v1.py CHANGED
@@ -258,7 +258,7 @@ def pre_process_text(text):
258
  # sentences = pre_process_text(text)
259
  # return textstat.flesch_kincaid_grade(sentences)
260
 
261
- def automated_readability_index():
262
  sentences = pre_process_text(text)
263
  return textstat.automated_readability_index(sentences)
264
 
 
258
  # sentences = pre_process_text(text)
259
  # return textstat.flesch_kincaid_grade(sentences)
260
 
261
+ def automated_readability_index(text):
262
  sentences = pre_process_text(text)
263
  return textstat.automated_readability_index(sentences)
264