Skip to content

Commit

Permalink
Reverting accidental change to parameter order of AutoMLSearch search…
Browse files Browse the repository at this point in the history
… method.
  • Loading branch information
freddyaboulton committed Sep 23, 2020
1 parent df432a5 commit 2d9a418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evalml/automl/automl_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def _handle_keyboard_interrupt(self, pipeline, current_batch_pipelines):
else:
leading_char = ""

def search(self, X, y, data_checks="auto", show_iteration_plot=True, feature_types=None):
def search(self, X, y, data_checks="auto", feature_types=None, show_iteration_plot=True):
"""Find the best pipeline for the data set.
Arguments:
Expand Down

0 comments on commit 2d9a418

Please sign in to comment.