Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
chore: update
Browse files
app.py
CHANGED
@@ -547,17 +547,17 @@ if __name__ == "__main__":
|
|
547 |
with gr.Column():
|
548 |
for category in SYMPTOMS_LIST[:3]:
|
549 |
with gr.Accordion(pretty_print(category.keys()), open=False):
|
550 |
-
check_box = gr.CheckboxGroup(
|
551 |
check_boxes.append(check_box)
|
552 |
with gr.Column():
|
553 |
for category in SYMPTOMS_LIST[3:6]:
|
554 |
with gr.Accordion(pretty_print(category.keys()), open=False):
|
555 |
-
check_box = gr.CheckboxGroup(
|
556 |
check_boxes.append(check_box)
|
557 |
with gr.Column():
|
558 |
for category in SYMPTOMS_LIST[6:]:
|
559 |
with gr.Accordion(pretty_print(category.keys()), open=False):
|
560 |
-
check_box = gr.CheckboxGroup(
|
561 |
check_boxes.append(check_box)
|
562 |
|
563 |
error_box1 = gr.Textbox(label="Error ❌", visible=False)
|
|
|
547 |
with gr.Column():
|
548 |
for category in SYMPTOMS_LIST[:3]:
|
549 |
with gr.Accordion(pretty_print(category.keys()), open=False):
|
550 |
+
check_box = gr.CheckboxGroup(pretty_print(category.values()), show_label=0)
|
551 |
check_boxes.append(check_box)
|
552 |
with gr.Column():
|
553 |
for category in SYMPTOMS_LIST[3:6]:
|
554 |
with gr.Accordion(pretty_print(category.keys()), open=False):
|
555 |
+
check_box = gr.CheckboxGroup(pretty_print(category.values()), show_label=0)
|
556 |
check_boxes.append(check_box)
|
557 |
with gr.Column():
|
558 |
for category in SYMPTOMS_LIST[6:]:
|
559 |
with gr.Accordion(pretty_print(category.keys()), open=False):
|
560 |
+
check_box = gr.CheckboxGroup(pretty_print(category.values()), show_label=0)
|
561 |
check_boxes.append(check_box)
|
562 |
|
563 |
error_box1 = gr.Textbox(label="Error ❌", visible=False)
|