orionweller commited on
Commit
ee7e4a5
·
1 Parent(s): b32ddfa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -99,7 +99,7 @@ checkboxes = None
99
  with col1:
100
  st.title("Instances")
101
  if run1_file is not None:
102
- name_of_columns = ["Overview"] + sorted([int(item) for item in set(run1_pandas.qid.tolist())])
103
  checkboxes = [("Overview", st.checkbox("Overview", key=f"0overview"))]
104
  st.divider()
105
  for item in name_of_columns:
 
99
  with col1:
100
  st.title("Instances")
101
  if run1_file is not None:
102
+ name_of_columns = ["Overview"] + sorted([str(item) for item in set(run1_pandas.qid.tolist())])
103
  checkboxes = [("Overview", st.checkbox("Overview", key=f"0overview"))]
104
  st.divider()
105
  for item in name_of_columns: