georad commited on
Commit
adaa78f
·
verified ·
1 Parent(s): b5c1d40

Update pages/chapter_index.py

Browse files
Files changed (1) hide show
  1. pages/chapter_index.py +1 -1
pages/chapter_index.py CHANGED
@@ -32,7 +32,7 @@ selected_chapters_list = st.session_state.selected_chapters
32
  selected_chapters = dataframe_with_selections(df_chapters)
33
  st.write("Your selection:")
34
  st.write(selected_chapters)
35
- selected_chapters_list = selected_chapters.iloc[:,:].tolist()
36
  st.write("SELECTED CHAPTERS: ", selected_chapters_list)
37
 
38
  if selected_chapters is not None:
 
32
  selected_chapters = dataframe_with_selections(df_chapters)
33
  st.write("Your selection:")
34
  st.write(selected_chapters)
35
+ selected_chapters_list = selected_chapters.iloc[:,:] #.tolist()
36
  st.write("SELECTED CHAPTERS: ", selected_chapters_list)
37
 
38
  if selected_chapters is not None: