Cannot use bare deprecated decorator

This commit is contained in:
Steven Silvester
2015-02-03 21:10:30 -06:00
parent cd0a6480d9
commit 85a68cff28
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -36,7 +36,7 @@ denoise_tv_chambolle = deprecated('skimage.restoration.denoise_tv_chambolle')\
(restoration.denoise_tv_chambolle)
# Backward compatibility v<0.11
@deprecated
@deprecated()
def canny(*args, **kwargs):
# Hack to avoid circular import
from skimage.feature._canny import canny as canny_
+1 -1
View File
@@ -23,7 +23,7 @@ denoise_tv_chambolle = deprecated('skimage.restoration.denoise_tv_chambolle')\
(restoration.denoise_tv_chambolle)
# Backward compatibility v<0.11
@deprecated
@deprecated()
def canny(*args, **kwargs):
# Hack to avoid circular import
from ..feature._canny import canny as canny_