From 9bfbcfcef39619a1a27ab5335b2fea56cec39a8b Mon Sep 17 00:00:00 2001 From: Olivia Date: Sun, 30 Aug 2015 23:15:04 +0100 Subject: [PATCH] Removed extraneous print statement --- skimage/morphology/misc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/skimage/morphology/misc.py b/skimage/morphology/misc.py index e868ffcb..4b3e259a 100644 --- a/skimage/morphology/misc.py +++ b/skimage/morphology/misc.py @@ -192,7 +192,6 @@ def remove_small_holes(ar, min_size=64, connectivity=1, in_place=False): #Creates warning if image is an integer image if out.dtype != bool: - print("I'm about to warn") warnings.warn("Any labeled images will be returned as a boolean array. " "Did you mean to use a boolean array?", UserWarning)