From af08026ff9bd55bfca72b1ccbf05cb73ad9d6f88 Mon Sep 17 00:00:00 2001 From: Ipuch Date: Tue, 31 Oct 2023 16:46:24 -0400 Subject: [PATCH] black --- bioptim/interfaces/solver_options.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/bioptim/interfaces/solver_options.py b/bioptim/interfaces/solver_options.py index aa8cb2a42..6816d7e6d 100644 --- a/bioptim/interfaces/solver_options.py +++ b/bioptim/interfaces/solver_options.py @@ -859,9 +859,15 @@ def set_maximum_iterations(self, num: int): def as_dict(self, solver): options = {} keys_to_skip = { - "_acados_dir", "_cost_type", "_constr_type", "_has_tolerance_changed", - "_only_first_options_has_changed", "type", "_c_compile", - "_c_generated_code_path", "_acados_model_name" + "_acados_dir", + "_cost_type", + "_constr_type", + "_has_tolerance_changed", + "_only_first_options_has_changed", + "type", + "_c_compile", + "_c_generated_code_path", + "_acados_model_name", } # Select the set of relevant keys before entering the loop