Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Nov 8, 2024
1 parent f2a3b39 commit 15cb30d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/parpe/hdf5_pe_input.py
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ def _generate_simulation_to_optimization_parameter_mapping(self) -> None:
in enumerate(variable_par_ids):
mapped_parameter = cond_par_map.map_sim_var[model_parameter_id]
while ((maps_to := cond_par_map.map_sim_var.get(mapped_parameter, mapped_parameter)) != mapped_parameter
and not np.isnan(maps_to)):
and isinstance(maps_to, str)):
mapped_parameter = maps_to
try:
(mapped_idx, override) = self.get_index_mapping_for_par(
Expand Down

0 comments on commit 15cb30d

Please sign in to comment.