From 736f5658bc400d729ac16e7cbad291a528abb830 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Thu, 25 Dec 2014 17:08:36 -0600 Subject: [PATCH] Fix indent in docstring example --- skimage/_shared/_warnings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/_shared/_warnings.py b/skimage/_shared/_warnings.py index a5fdd4cb..78d38fbd 100644 --- a/skimage/_shared/_warnings.py +++ b/skimage/_shared/_warnings.py @@ -78,7 +78,7 @@ def expected_warnings(matching): -------- >>> from skimage import data, img_as_ubyte, img_as_float >>> with expected_warnings(['precision loss']): - ... d = img_as_ubyte(img_as_float(data.coins())) + ... d = img_as_ubyte(img_as_float(data.coins())) Notes -----