Skip to content

Commit f5e599c

Browse files
authored
hotfix __init__
1 parent 4f6e81b commit f5e599c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

intvalpy/models/WILS.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
class WILS(object):
99

10-
def init(self, alpha=0, beta=1):
10+
def __init__(self, alpha=0, beta=1):
1111
self.alpha = alpha
1212
self.beta = beta
1313

@@ -35,4 +35,4 @@ def fit(self, X_train, y_train, weight=None, rec_func='Tol', **kwargs):
3535
)
3636

3737
def predict(self, X_test):
38-
return X_test @ self.estimator[0]
38+
return X_test @ self.estimator[0]

0 commit comments

Comments
 (0)