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

Skip to content

Commit 135bab0

Browse files
authored
Merge pull request #12960 from matplotlib/ImportanceOfBeingErnest-patch-1
Remove animated=True from animation docs
2 parents 48f8cb9 + 3b7dc65 commit 135bab0

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)