Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -30,7 +30,9 @@ if xl1 is not None :
|
|
30 |
for method in row.keys():
|
31 |
if method=="text":
|
32 |
continue
|
33 |
-
methods_score[method] += st.slider(f"{row[method]}",min_value=1,max_value=3,value=2,step=1, key=i) * mult
|
|
|
|
|
34 |
i += 1
|
35 |
|
36 |
st.markdown("""---""")
|
|
|
30 |
for method in row.keys():
|
31 |
if method=="text":
|
32 |
continue
|
33 |
+
#methods_score[method] += st.slider(f"{row[method]}",min_value=1,max_value=3,value=2,step=1, key=i) * mult
|
34 |
+
methods_score[method] += int(st.radio(f"{row[method]}",(0,1,2,3), index=2, horizontal = True,
|
35 |
+
key=i)) * mult
|
36 |
i += 1
|
37 |
|
38 |
st.markdown("""---""")
|