Skip to content
This repository was archived by the owner on Jul 27, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion experiment_manager/ibmfl_cli_automator/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ def dict_set_nested(nested_dict, key_list, value):
if config_agg_dict is not None and 'agg' in proc_label:
orig_config = config_agg_dict
elif config_party_dicts is not None and 'party' in proc_label:
orig_config = config_party_dicts[int(proc_label[-1])]
orig_config = config_party_dicts[int(proc_label[5:])]
else:
with open(file, 'r') as stream:
orig_config = yaml.load(stream.read(), Loader=yaml.Loader)
Expand Down