snoop2head commited on
Commit
b14d53a
β€’
1 Parent(s): 30920d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -64,8 +64,8 @@ print("slider sidebars rendering completed")
64
  # make input sentence
65
  emotion_list = ["행볡", "λ†€λžŒ", "λΆ„λ…Έ", "혐였", "μŠ¬ν””", "곡포", "쀑립"]
66
  main_emotion = st.sidebar.radio("μ£Όμš” 감정을 μ„ νƒν•˜μ„Έμš”", emotion_list)
67
- sub_emotion_list = emotion_list.reverse()
68
- sub_emotion = st.sidebar.radio("두 번째 감정을 μ„ νƒν•˜μ„Έμš”", sub_emotion_list)
69
 
70
  print("radio sidebars rendering completed")
71
 
 
64
  # make input sentence
65
  emotion_list = ["행볡", "λ†€λžŒ", "λΆ„λ…Έ", "혐였", "μŠ¬ν””", "곡포", "쀑립"]
66
  main_emotion = st.sidebar.radio("μ£Όμš” 감정을 μ„ νƒν•˜μ„Έμš”", emotion_list)
67
+ emotion_list.reverse()
68
+ sub_emotion = st.sidebar.radio("두 번째 감정을 μ„ νƒν•˜μ„Έμš”", emotion_list)
69
 
70
  print("radio sidebars rendering completed")
71