Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 3b7dc65

Browse files
Remove animated=True from animation docs
Fixes #12952
1 parent 2507f2c commit 3b7dc65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/api/animation_api.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ artist at a global scope and let Python sort things out. For example ::
105105

106106
fig, ax = plt.subplots()
107107
xdata, ydata = [], []
108-
ln, = plt.plot([], [], 'ro', animated=True)
108+
ln, = plt.plot([], [], 'ro')
109109

110110
def init():
111111
ax.set_xlim(0, 2*np.pi)

0 commit comments

Comments
 (0)