From 68fdc8a24ce39b02e4754c679289a69e67351f09 Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Mon, 4 Nov 2024 20:56:18 +0100 Subject: [PATCH] Backport PR #29068: [DOC] Fix indentation in sync_cmaps example --- galleries/examples/images_contours_and_fields/multi_image.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/galleries/examples/images_contours_and_fields/multi_image.py b/galleries/examples/images_contours_and_fields/multi_image.py index 8be048055dec..4e6f6cc54a79 100644 --- a/galleries/examples/images_contours_and_fields/multi_image.py +++ b/galleries/examples/images_contours_and_fields/multi_image.py @@ -63,8 +63,8 @@ # # def sync_cmaps(changed_image): # for im in images: -# if changed_image.get_cmap() != im.get_cmap(): -# im.set_cmap(changed_image.get_cmap()) +# if changed_image.get_cmap() != im.get_cmap(): +# im.set_cmap(changed_image.get_cmap()) # # for im in images: # im.callbacks.connect('changed', sync_cmaps)