Skip to content

Commit b4b0c91

Browse files
committed
PEP8
1 parent aa04769 commit b4b0c91

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

examples/animation/animate_decay.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,13 @@ def data_gen(t=0):
1010
t += 0.1
1111
yield t, np.sin(2*np.pi*t) * np.exp(-t/10.)
1212

13+
1314
def init():
1415
ax.set_ylim(-1.1, 1.1)
1516
ax.set_xlim(0, 10)
1617
del xdata[:]
1718
del ydata[:]
18-
line.set_data(xdata,ydata)
19+
line.set_data(xdata, ydata)
1920
return line,
2021

2122
fig, ax = plt.subplots()

0 commit comments

Comments
 (0)