From f25a77bb2bf53607b0b34e8b02c04a2a6152d2ff Mon Sep 17 00:00:00 2001 From: Daniel Weindl Date: Tue, 19 Nov 2024 11:45:01 +0100 Subject: [PATCH] .. --- python/sdist/amici/petab/conditions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/sdist/amici/petab/conditions.py b/python/sdist/amici/petab/conditions.py index 45c13e9b35..2d72858580 100644 --- a/python/sdist/amici/petab/conditions.py +++ b/python/sdist/amici/petab/conditions.py @@ -156,7 +156,7 @@ def _get_par(model_par, value, mapping): key: _get_par(key, val, map_sim_fix) for key, val in map_sim_fix.items() } - map_sim_fix_var = dict(map_sim_fix, **map_sim_var) + map_sim_fix_var = map_sim_fix | map_sim_var map_sim_var = { key: _get_par(key, val, map_sim_fix_var) for key, val in map_sim_var.items()