clr commited on
Commit
a4ba584
·
1 Parent(s): 2f63626

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,7 +7,7 @@ matplotlib.use('Agg')
7
  import matplotlib.pyplot as plt
8
 
9
 
10
- def f1():
11
  fig = plt.figure(figsize=(6,5))
12
  plt.axline((0,0),slope=1,color="darkgray")
13
  plt.xlabel("Vowel length (ms)")
@@ -21,4 +21,4 @@ with bl:
21
 
22
  pl1 = gr.Plot()
23
 
24
- btn1.click(f1, [], pl1)
 
7
  import matplotlib.pyplot as plt
8
 
9
 
10
+ def f1(ignore):
11
  fig = plt.figure(figsize=(6,5))
12
  plt.axline((0,0),slope=1,color="darkgray")
13
  plt.xlabel("Vowel length (ms)")
 
21
 
22
  pl1 = gr.Plot()
23
 
24
+ btn1.click(f1, [btn1], pl1)