Skip to content

Commit 3ecce71

Browse files
authored
Forget an initialisation of the parent class. (#354)
forget an init
1 parent e958c3b commit 3ecce71

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/hidimstat/base_perturbation.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def __init__(
4343
The number of parallel jobs to run. Parallelization is done over the
4444
variables or groups of variables.
4545
"""
46+
super().__init__()
4647
check_is_fitted(estimator)
4748
assert n_permutations > 0, "n_permutations must be positive"
4849
self.estimator = estimator

0 commit comments

Comments
 (0)