From d68cab93284f4fa5546b0a149a849a61d99c2d8f Mon Sep 17 00:00:00 2001 From: christopherbunn Date: Tue, 17 Jan 2023 13:45:38 -0500 Subject: [PATCH] Fix docstring --- evalml/pipelines/components/component_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evalml/pipelines/components/component_base.py b/evalml/pipelines/components/component_base.py index c5f9adffc6..935dc09967 100644 --- a/evalml/pipelines/components/component_base.py +++ b/evalml/pipelines/components/component_base.py @@ -232,7 +232,7 @@ def update_parameters(self, update_dict, reset_fit=True): """Updates the parameter dictionary of the component. Args: - return_dict (dict): A dict of parameters to update. + update_dict (dict): A dict of parameters to update. reset_fit (bool, optional): If True, will set `_is_fitted` to False. """ self._parameters.update(update_dict)