From 6f4cbebd6d81cc2aa69dfddf354a01a8b5969a54 Mon Sep 17 00:00:00 2001 From: Kevin Keraudren Date: Tue, 10 May 2016 19:31:51 +0100 Subject: [PATCH] remove default value in docstring --- skimage/measure/fit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/measure/fit.py b/skimage/measure/fit.py index 7ec96a15..660b86f6 100644 --- a/skimage/measure/fit.py +++ b/skimage/measure/fit.py @@ -765,7 +765,7 @@ def ransac(data, model_class, min_samples, residual_threshold, where the probability (confidence) is typically set to a high value such as 0.99, and e is the current fraction of inliers w.r.t. the total number of samples. - random_state : int, RandomState instance or None, optional (default=None) + random_state : int, RandomState instance or None, optional If int, random_state is the seed used by the random number generator; If RandomState instance, random_state is the random number generator; If None, the random number generator is the RandomState instance used