Skip to content

Commit c107ee8

Browse files
committed
Fix flake after rebase
1 parent 537bff8 commit c107ee8

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

autoPyTorch/api/base_task.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -205,16 +205,13 @@ def __init__(
205205

206206
self.InputValidator: Optional[BaseInputValidator] = None
207207

208-
209208
self.search_space_updates = search_space_updates
210209
if search_space_updates is not None:
211210
if not isinstance(self.search_space_updates,
212211
HyperparameterSearchSpaceUpdates):
213212
raise ValueError("Expected search space updates to be of instance"
214213
" HyperparameterSearchSpaceUpdates got {}".format(type(self.search_space_updates)))
215214

216-
self.InputValidator: Optional[BaseInputValidator] = None
217-
218215
@abstractmethod
219216
def build_pipeline(self, dataset_properties: Dict[str, Any]) -> BasePipeline:
220217
"""

0 commit comments

Comments
 (0)