wenyi commited on
Commit
f4cc1fa
·
verified ·
1 Parent(s): e9cf520

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -262,7 +262,7 @@ with block:
262
  data_run.click(on_filter_model_size_method_change, inputs=[checkbox_group], outputs=data_component)
263
  result_download.click(download_csv, inputs=None, outputs=[file_download, file_download])
264
 
265
- for c in demo.get_blocks().blocks:
266
  try:
267
  cfg = c.get_config()
268
  if isinstance(cfg, bool):
@@ -270,4 +270,6 @@ for c in demo.get_blocks().blocks:
270
  except Exception as e:
271
  print(f"Error inspecting {c}: {e}")
272
 
 
 
273
  block.launch()
 
262
  data_run.click(on_filter_model_size_method_change, inputs=[checkbox_group], outputs=data_component)
263
  result_download.click(download_csv, inputs=None, outputs=[file_download, file_download])
264
 
265
+ for c in block.get_blocks().blocks:
266
  try:
267
  cfg = c.get_config()
268
  if isinstance(cfg, bool):
 
270
  except Exception as e:
271
  print(f"Error inspecting {c}: {e}")
272
 
273
+
274
+
275
  block.launch()