interiv commited on
Commit
bb4c9c7
1 Parent(s): 3d2841b

Update run.py

Browse files
Files changed (1) hide show
  1. run.py +2 -2
run.py CHANGED
@@ -6,8 +6,8 @@ def increase(num):
6
  with gr.Blocks() as demo:
7
  a = gr.Number(label="a")
8
  b = gr.Number(label="b")
9
- btoa = gr.Button("a > b")
10
- atob = gr.Button("b > a")
11
  atob.click(increase, a, b)
12
  btoa.click(increase, b, a)
13
 
 
6
  with gr.Blocks() as demo:
7
  a = gr.Number(label="a")
8
  b = gr.Number(label="b")
9
+ atob = gr.Button("a > b")
10
+ btoa = gr.Button("b > a")
11
  atob.click(increase, a, b)
12
  btoa.click(increase, b, a)
13