Skip to content

Commit

Permalink
Update openstef/feature_engineering/missing_values_transformer.py
Browse files Browse the repository at this point in the history
Co-authored-by: Egor Dmitriev <egordmitriev2@gmail.com>
Signed-off-by: Lars Schilders <123180911+lschilders@users.noreply.github.com>
  • Loading branch information
lschilders and egordm authored Oct 8, 2024
1 parent 7f710a7 commit 4203538
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions openstef/feature_engineering/missing_values_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,7 @@ def __init__(
self.missing_values = missing_values
self.imputation_strategy = imputation_strategy
self.fill_value = fill_value
if no_fill_future_values_features is None:
no_fill_future_values_features = []
self.no_fill_future_values_features = no_fill_future_values_features
self.no_fill_future_values_features = no_fill_future_values_features or []
self.is_fitted_ = False

# Build the proper imputation transformer
Expand Down

0 comments on commit 4203538

Please sign in to comment.