From c586c8f1fa312d29a32c4607e4b2fcee1c7a8a07 Mon Sep 17 00:00:00 2001 From: Arthur Loureiro Date: Sat, 3 May 2025 11:59:28 +0200 Subject: [PATCH] fixed a missing comma that broke multinest --- montepython/MultiNest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/montepython/MultiNest.py b/montepython/MultiNest.py index a8da3696..06730065 100644 --- a/montepython/MultiNest.py +++ b/montepython/MultiNest.py @@ -95,7 +95,7 @@ } # Automatically-defined arguments of PyMultiNest, type specified NS_auto_arguments = { - 'base_dir': {'type': str} + 'base_dir': {'type': str}, 'n_dims': {'type': int}, 'n_params': {'type': int}, 'verbose': {'type': str2bool},