xu3kev commited on
Commit
f9b254f
·
1 Parent(s): 488a55a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -24,7 +24,7 @@ list_languages = ['Lean Proofsteps', 'Isabelle Proofsteps']
24
  chosen_language = st.sidebar.selectbox(
25
  label="Select a Proof Language", options=list_languages, index=0
26
  )
27
-
28
  samples = load_data(chosen_language)
29
  st.sidebar.header('Sample Selection')
30
  index_example = st.sidebar.number_input(f"Choose a sample from the existing {len(samples)} samples:", min_value=0, max_value=max(0, len(samples)-1), value=0, step=1)
 
24
  chosen_language = st.sidebar.selectbox(
25
  label="Select a Proof Language", options=list_languages, index=0
26
  )
27
+ print(chosen_language)
28
  samples = load_data(chosen_language)
29
  st.sidebar.header('Sample Selection')
30
  index_example = st.sidebar.number_input(f"Choose a sample from the existing {len(samples)} samples:", min_value=0, max_value=max(0, len(samples)-1), value=0, step=1)