Skip to content

Commit

Permalink
Include group ID even if the group is empty
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Oct 28, 2024
1 parent 1b962e7 commit 6bb50f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ihm/dumper.py
Original file line number Diff line number Diff line change
Expand Up @@ -1978,8 +1978,8 @@ def dump_info(self, system, writer):
lp.write(ensemble_id=e._id, ensemble_name=e.name,
post_process_id=e.post_process._id if e.post_process
else None,
model_group_id=e.model_group._id if e.model_group
else None,
model_group_id=e.model_group._id
if e.model_group is not None else None,
ensemble_clustering_method=e.clustering_method,
ensemble_clustering_feature=e.clustering_feature,
num_ensemble_models=e.num_models,
Expand Down

0 comments on commit 6bb50f3

Please sign in to comment.