Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -17,7 +17,7 @@ iface = gr.Interface(fn=calculator,
|
|
| 17 |
inputs=[gr.inputs.Number(default=0, label="Num1"),
|
| 18 |
gr.inputs.Number(default=0, label="Num2"),
|
| 19 |
gr.inputs.Radio(["+", "-", "*", "/"], label="Operation")],
|
| 20 |
-
outputs=gr.outputs.Textbox(type="
|
| 21 |
title="Calculator with Buttons",
|
| 22 |
theme="compact")
|
| 23 |
|
|
|
|
| 17 |
inputs=[gr.inputs.Number(default=0, label="Num1"),
|
| 18 |
gr.inputs.Number(default=0, label="Num2"),
|
| 19 |
gr.inputs.Radio(["+", "-", "*", "/"], label="Operation")],
|
| 20 |
+
outputs=gr.outputs.Textbox(type="text", label="Result"),
|
| 21 |
title="Calculator with Buttons",
|
| 22 |
theme="compact")
|
| 23 |
|