Commit
·
4f0c913
1
Parent(s):
1b29025
Fix indentation in demo.load call for display_submissions
Browse files- gradio_interface.py +1 -1
gradio_interface.py
CHANGED
@@ -137,5 +137,5 @@ with gr.Blocks(title="ImageCLEFmed-MEDVQA-GI-2025 Submissions") as demo:
|
|
137 |
title="Refresh API",
|
138 |
description="Hidden interface to refresh the API."
|
139 |
)
|
140 |
-
demo.load(display_submissions, inputs=[task_type_dropdown, search_box], outputs=output_table)
|
141 |
demo.launch()
|
|
|
137 |
title="Refresh API",
|
138 |
description="Hidden interface to refresh the API."
|
139 |
)
|
140 |
+
demo.load(display_submissions, inputs=[task_type_dropdown, search_box], outputs=output_table)
|
141 |
demo.launch()
|