awacke1 commited on
Commit
bf5780c
1 Parent(s): 0008388

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,7 +14,7 @@ def display_df():
14
  df_images = df.head()
15
  return df_images
16
 
17
- def display_next10(dataframe, end):
18
  start = (end or dataframe.index[-1]) + 1
19
  end = start + 99
20
  df_images = df.loc[start:end]
 
14
  df_images = df.head()
15
  return df_images
16
 
17
+ def display_next100(dataframe, end):
18
  start = (end or dataframe.index[-1]) + 1
19
  end = start + 99
20
  df_images = df.loc[start:end]