abhi001vj commited on
Commit
66e6f87
·
1 Parent(s): da38669

fixed the typo error in code

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -187,7 +187,7 @@ if len(ALL_FILES) > 0:
187
  with st.spinner(
188
  "🧠    Performing indexing of uplaoded documents... \n "
189
  ):
190
- for i range(0, len(docs), batch_size):
191
  # find end of batch
192
  i_end = min(i+batch_size, len(docs))
193
  # extract batch
 
187
  with st.spinner(
188
  "🧠    Performing indexing of uplaoded documents... \n "
189
  ):
190
+ for i in range(0, len(docs), batch_size):
191
  # find end of batch
192
  i_end = min(i+batch_size, len(docs))
193
  # extract batch