xavierbarbier commited on
Commit
e7006d4
·
verified ·
1 Parent(s): ac65597

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -72,7 +72,7 @@ for p in np.arange(0, len(reader.pages), 1):
72
  # extracting text from page
73
  text.append(page.extract_text())
74
 
75
- text = ' '.join(text)
76
 
77
  chunks = [text[i:i + chunk_size] for i in range(0, len(text), chunk_size)]
78
 
 
72
  # extracting text from page
73
  text.append(page.extract_text())
74
 
75
+ text = ' '.join(text)
76
 
77
  chunks = [text[i:i + chunk_size] for i in range(0, len(text), chunk_size)]
78