minwoosun commited on
Commit
849b95b
·
verified ·
1 Parent(s): 5612922

comma typo fix

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -243,8 +243,8 @@ if __name__ == "__main__":
243
  examples = gr.Examples(
244
  examples=[[None, "human", "PBMC 100 cells"],[None, "human", "PBMC 1000 cells"]],
245
  inputs=[file_input, species_input, default_dataset_input],
246
- outputs=[image_output, file_output, pred_output]
247
- fn=main
248
  cache_examples=True
249
  )
250
 
 
243
  examples = gr.Examples(
244
  examples=[[None, "human", "PBMC 100 cells"],[None, "human", "PBMC 1000 cells"]],
245
  inputs=[file_input, species_input, default_dataset_input],
246
+ outputs=[image_output, file_output, pred_output],
247
+ fn=main,
248
  cache_examples=True
249
  )
250