From c5bdf00e82315f0784bbc5950a3488a488ae9e75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sat, 16 Mar 2013 18:03:04 +0100 Subject: [PATCH] Fix parameter list format error of rotate --- skimage/transform/_warps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/transform/_warps.py b/skimage/transform/_warps.py index 7ac3e63f..be7eee12 100644 --- a/skimage/transform/_warps.py +++ b/skimage/transform/_warps.py @@ -129,7 +129,7 @@ def rotate(image, angle, resize=False, order=1, mode='constant', cval=0.): Input image. angle : float Rotation angle in degrees in counter-clockwise direction. - resize: bool, optional + resize : bool, optional Determine whether the shape of the output image will be automatically calculated, so the complete rotated image exactly fits. Default is False.