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 16, 2020
1 parent 858ca74 commit eb5144c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion evalml/automl/automl_search.py
Expand Up @@ -345,7 +345,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 eb5144c

Please sign in to comment.