jacobmp commited on
Commit
93bb55b
·
verified ·
1 Parent(s): f4f66f6

Fix missing bracket in app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -45,5 +45,5 @@ def process(path):
45
  return full_text
46
 
47
  if __name__ == "__main__"
48
- demo = gr.Interface(fn=process, inputs=gr.Image(type="filepath", outputs="text")
49
  demo.launch()
 
45
  return full_text
46
 
47
  if __name__ == "__main__"
48
+ demo = gr.Interface(fn=process, inputs=gr.Image(type="filepath"), outputs="text")
49
  demo.launch()