Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ with st.form("my_form"):
|
|
76 |
doc = docx.Document(save_path)
|
77 |
paragraphs = doc.paragraphs
|
78 |
for para in paragraphs:
|
79 |
-
time.sleep(
|
80 |
text = para.text
|
81 |
words = text.split()
|
82 |
if len(words) > LIMIT_WORDS_PARA:
|
|
|
76 |
doc = docx.Document(save_path)
|
77 |
paragraphs = doc.paragraphs
|
78 |
for para in paragraphs:
|
79 |
+
time.sleep(5)
|
80 |
text = para.text
|
81 |
words = text.split()
|
82 |
if len(words) > LIMIT_WORDS_PARA:
|