From a04840f61896dc3c4cbd25ca47f6f4b641690e51 Mon Sep 17 00:00:00 2001 From: Philipp Schiele <44360364+phschiele@users.noreply.github.com> Date: Sat, 2 Mar 2024 00:40:14 +0100 Subject: [PATCH] Update getting_started_py.md --- docs/src/python/getting_started_py.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/python/getting_started_py.md b/docs/src/python/getting_started_py.md index 7ef92c2..492496e 100644 --- a/docs/src/python/getting_started_py.md +++ b/docs/src/python/getting_started_py.md @@ -107,7 +107,7 @@ settings = clarabel.DefaultSettings() If you want to disable verbose printing and set a 5 second time limit on the solver, you can then just modify the fields: ```python -settings.verbose = True +settings.verbose = False settings.time_limit = 5. ```