Skip to content

Commit e019f32

Browse files
committed
Temporarily hide warning
1 parent 697695a commit e019f32

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Orange/base.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ def __call__(self, data, callback=None):
120120
data = self.preprocess(data, callback=cb)
121121
except TypeError:
122122
data = self.preprocess(data)
123-
warnings.warn("A keyword argument 'callback' has been added to the"
124-
" preprocess() signature. Implementing the method "
125-
"without the argument is deprecated and will result "
126-
"in an error in the future.",
127-
OrangeDeprecationWarning)
123+
# warnings.warn("A keyword argument 'callback' has been added to the"
124+
# " preprocess() signature. Implementing the method "
125+
# "without the argument is deprecated and will result "
126+
# "in an error in the future.",
127+
# OrangeDeprecationWarning)
128128

129129
if len(data.domain.class_vars) > 1 and not self.supports_multiclass:
130130
raise TypeError("%s doesn't support multiple class variables" %

0 commit comments

Comments
 (0)