IliaLarchenko commited on
Commit
e4e8fc0
1 Parent(s): 2ecea20

fixed bug with str params

Browse files
Files changed (1) hide show
  1. src/control.py +0 -2
src/control.py CHANGED
@@ -39,8 +39,6 @@ def select_several_RGB(param_name, **kwargs):
39
  def select_radio(param_name, options_list, **kwargs):
40
  st.sidebar.subheader(param_name)
41
  result = st.sidebar.radio("", options_list)
42
- if isinstance(options_list[0], str):
43
- result = '"' + result + '"'
44
  return result
45
 
46
 
 
39
  def select_radio(param_name, options_list, **kwargs):
40
  st.sidebar.subheader(param_name)
41
  result = st.sidebar.radio("", options_list)
 
 
42
  return result
43
 
44