Skip to content

Commit

Permalink
Fix imputer insertion
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherbunn committed Oct 27, 2023
1 parent b4426a7 commit 5f9204d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evalml/pipelines/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def _get_preprocessing_components(
if include_decomposer:
components_functions = [_get_imputer, _get_decomposer]
else:
return [_get_imputer]
components_functions = [_get_imputer]

elif is_time_series(problem_type):
components_functions = [
Expand Down

0 comments on commit 5f9204d

Please sign in to comment.