File tree 1 file changed +3
-2
lines changed
autoPyTorch/pipeline/components/preprocessing/tabular_preprocessing/coalescer 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -114,8 +114,9 @@ def get_hyperparameter_search_space(self,
114
114
updates = self ._get_search_space_updates (prefix = name )
115
115
# Call arg is ignored on mypy as the search space dynamically
116
116
# provides different args
117
- preprocessor_configuration_space = available_preprocessors [name ].\
118
- get_hyperparameter_search_space (dataset_properties , ** updates ) # type:ignore
117
+ preprocessor_configuration_space = available_preprocessors [ # type:ignore[call-arg]
118
+ name # type:ignore[call-arg]
119
+ ].get_hyperparameter_search_space (dataset_properties , ** updates ) # type:ignore[call-arg]
119
120
parent_hyperparameter = {'parent' : preprocessor , 'value' : name }
120
121
cs .add_configuration_space (name , preprocessor_configuration_space ,
121
122
parent_hyperparameter = parent_hyperparameter )
You can’t perform that action at this time.
0 commit comments