Update app.py
Browse files
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)
|