Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -123,7 +123,7 @@ def main():
|
|
123 |
pagination = st.container()
|
124 |
batch_size = 5
|
125 |
total_pages = (int(len(df_results) / batch_size) if int(len(df_results) / batch_size) > 0 else 1)
|
126 |
-
st.write(int(len(df_results)))
|
127 |
with pagination:
|
128 |
N_cards_per_row = 1
|
129 |
for n_row, row in df_results.reset_index().iterrows():
|
|
|
123 |
pagination = st.container()
|
124 |
batch_size = 5
|
125 |
total_pages = (int(len(df_results) / batch_size) if int(len(df_results) / batch_size) > 0 else 1)
|
126 |
+
st.write(int(len(df_results)/ batch_size))
|
127 |
with pagination:
|
128 |
N_cards_per_row = 1
|
129 |
for n_row, row in df_results.reset_index().iterrows():
|