adrin commited on
Commit
d1e9c7d
1 Parent(s): dfc41e0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -67,7 +67,9 @@ def convert(file):
67
  with gr.Blocks(title=title) as iface:
68
  gr.Markdown(desc)
69
  upload_button = gr.UploadButton(
70
- "Click to Upload a File", file_types=None, file_count="single",
 
 
71
  api_name="upload-file"
72
  )
73
  file_output = gr.File(label="Converted File")
@@ -82,4 +84,4 @@ with gr.Blocks(title=title) as iface:
82
  )
83
 
84
 
85
- iface.launch()
 
67
  with gr.Blocks(title=title) as iface:
68
  gr.Markdown(desc)
69
  upload_button = gr.UploadButton(
70
+ "Click to Upload a File",
71
+ file_types=None,
72
+ file_count="single",
73
  api_name="upload-file"
74
  )
75
  file_output = gr.File(label="Converted File")
 
84
  )
85
 
86
 
87
+ iface.launch(debug=True)