From 6750646422baa75fdf4c68beb5b2e9343fda3ddd Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 9 Dec 2018 20:59:21 -0500 Subject: [PATCH] Backport PR #12960: Remove animated=True from animation docs --- doc/api/animation_api.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/animation_api.rst b/doc/api/animation_api.rst index 02c4f3e64999..f99ea7f1d18d 100644 --- a/doc/api/animation_api.rst +++ b/doc/api/animation_api.rst @@ -106,7 +106,7 @@ artist at a global scope and let Python sort things out. For example :: fig, ax = plt.subplots() xdata, ydata = [], [] - ln, = plt.plot([], [], 'ro', animated=True) + ln, = plt.plot([], [], 'ro') def init(): ax.set_xlim(0, 2*np.pi)