From 3b7dc6566b6af85fc001253c786bb5d1bced4730 Mon Sep 17 00:00:00 2001 From: Elan Ernest <23121882+ImportanceOfBeingErnest@users.noreply.github.com> Date: Sun, 9 Dec 2018 21:05:08 +0100 Subject: [PATCH] Remove animated=True from animation docs Fixes #12952 --- 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 f64c19e8dfa1..3bd09cb74c8e 100644 --- a/doc/api/animation_api.rst +++ b/doc/api/animation_api.rst @@ -105,7 +105,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)