cyberosa
commited on
Commit
·
f28c155
1
Parent(s):
240e297
missing update input parameter
Browse files
app.py
CHANGED
|
@@ -526,12 +526,12 @@ with demo:
|
|
| 526 |
|
| 527 |
with gr.Row():
|
| 528 |
tool_error_plot = plot_tool_error_data_by_market(
|
| 529 |
-
|
| 530 |
)
|
| 531 |
|
| 532 |
def update_tool_error_plot(tool):
|
| 533 |
return plot_tool_error_data_by_market(
|
| 534 |
-
|
| 535 |
)
|
| 536 |
|
| 537 |
sel_tool.change(
|
|
|
|
| 526 |
|
| 527 |
with gr.Row():
|
| 528 |
tool_error_plot = plot_tool_error_data_by_market(
|
| 529 |
+
error_raw=error_by_markets, tool=INC_TOOLS[0]
|
| 530 |
)
|
| 531 |
|
| 532 |
def update_tool_error_plot(tool):
|
| 533 |
return plot_tool_error_data_by_market(
|
| 534 |
+
error_raw=error_by_markets, tool=tool
|
| 535 |
)
|
| 536 |
|
| 537 |
sel_tool.change(
|