From c8c95c0e633680e56c553a2c0ad9bf4ac3ee1538 Mon Sep 17 00:00:00 2001 From: radioxoma Date: Wed, 21 Aug 2013 20:18:34 +0300 Subject: [PATCH] Fix import list sequence --- skimage/filter/thresholding.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skimage/filter/thresholding.py b/skimage/filter/thresholding.py index ede3c76f..bc052d8a 100644 --- a/skimage/filter/thresholding.py +++ b/skimage/filter/thresholding.py @@ -1,4 +1,4 @@ -__all__ = ['threshold_otsu', 'threshold_adaptive', 'threshold_yen'] +__all__ = ['threshold_adaptive', 'threshold_otsu', 'threshold_yen'] import numpy as np import scipy.ndimage