diff --git a/floris/floris_model.py b/floris/floris_model.py index a4cf42e83..edf987081 100644 --- a/floris/floris_model.py +++ b/floris/floris_model.py @@ -1651,6 +1651,14 @@ def show_config(self, full=False) -> None: del config_dict["wake"]["wake_turbulence_parameters"] print_nested_dict(config_dict) + def print_dict(self) -> None: + """Print the FlorisModel dictionary. + """ + self.logger.warning( + "The print_dict() method has been deprecated." + " Please use the show_config() method instead." + ) + self.show_config(full=True) ### Properties