theodotus commited on
Commit
2fc8171
·
1 Parent(s): 6598449

Fixed old select

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -32,7 +32,7 @@ def question_interface(question_state, answer):
32
 
33
  # Create an input component for the answer
34
  answers = test.get_answers(current_question_index)
35
- radio = gr.Radio.update(choices = answers)
36
 
37
  image_description = test.get_description(current_question_index)
38
  image_path = test.get_image_path(current_question_index)
 
32
 
33
  # Create an input component for the answer
34
  answers = test.get_answers(current_question_index)
35
+ radio = gr.Radio.update(choices = answers, value = None)
36
 
37
  image_description = test.get_description(current_question_index)
38
  image_path = test.get_image_path(current_question_index)