From 2308ba0617dcfe3123db5640a7734f47eead4148 Mon Sep 17 00:00:00 2001 From: arve0 Date: Wed, 18 Feb 2015 22:19:31 +0100 Subject: [PATCH] fix typo artist.remove -> artists.remove --- skimage/viewer/viewers/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/viewer/viewers/core.py b/skimage/viewer/viewers/core.py index b85a028f..6cf6ffc8 100644 --- a/skimage/viewer/viewers/core.py +++ b/skimage/viewer/viewers/core.py @@ -60,7 +60,7 @@ class BlitManager(object): def remove_artists(self, artists): for artist in artists: - self.artist.remove(artist) + self.artists.remove(artist) def on_draw_event(self, event=None): self.background = self.canvas.copy_from_bbox(self.ax.bbox)