Ivan000 commited on
Commit
1888e1a
·
verified ·
1 Parent(s): 3af376c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,8 +32,8 @@ def scan_qr_code(image):
32
  # Define the Gradio interface
33
  iface = gr.Interface(
34
  fn=scan_qr_code,
35
- inputs=gr.inputs.Image(type="pil"),
36
- outputs=gr.outputs.Textbox(),
37
  title="QR Code Scanner",
38
  description="Upload an image containing a QR code to decode it."
39
  )
 
32
  # Define the Gradio interface
33
  iface = gr.Interface(
34
  fn=scan_qr_code,
35
+ inputs=gr.Image(type="pil"),
36
+ outputs=gr.Textbox(),
37
  title="QR Code Scanner",
38
  description="Upload an image containing a QR code to decode it."
39
  )