From a02506ff9503c695b426dcd758f94cc5bd9abde1 Mon Sep 17 00:00:00 2001 From: Moritz Wolter Date: Thu, 12 Sep 2024 10:38:16 +0200 Subject: [PATCH 1/2] add brackets to satisfy the new sequence requirement --- galleries/examples/animation/frame_grabbing_sgskip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/galleries/examples/animation/frame_grabbing_sgskip.py b/galleries/examples/animation/frame_grabbing_sgskip.py index 08155d2c61a7..9801075e3929 100644 --- a/galleries/examples/animation/frame_grabbing_sgskip.py +++ b/galleries/examples/animation/frame_grabbing_sgskip.py @@ -39,5 +39,5 @@ for i in range(100): x0 += 0.1 * np.random.randn() y0 += 0.1 * np.random.randn() - l.set_data(x0, y0) + l.set_data([x0], [y0]) writer.grab_frame() From 37c66d1c3bee261f0a9c938fbc94af9238646126 Mon Sep 17 00:00:00 2001 From: Moritz Wolter Date: Thu, 12 Sep 2024 10:43:36 +0200 Subject: [PATCH 2/2] shorten example description. --- galleries/examples/animation/frame_grabbing_sgskip.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/galleries/examples/animation/frame_grabbing_sgskip.py b/galleries/examples/animation/frame_grabbing_sgskip.py index 9801075e3929..dcc2ca01afd9 100644 --- a/galleries/examples/animation/frame_grabbing_sgskip.py +++ b/galleries/examples/animation/frame_grabbing_sgskip.py @@ -6,8 +6,6 @@ Use a MovieWriter directly to grab individual frames and write them to a file. This avoids any event loop integration, and thus works even with the Agg backend. This is not recommended for use in an interactive setting. - -Output generated via `matplotlib.animation.Animation.to_jshtml`. """ import numpy as np