Skip to content
Open
Show file tree
Hide file tree
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: 2 additions & 0 deletions new_workflow/adsorption_correction.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,8 @@ def _add_Group_object_as_data(self):
con_str = self.tree[node_id].data['connectivity_string']
subtree = self.tree.subtree(node_id)
for subnode_id in subtree.expand_tree():
if subnode_id == node_id: # skip self
continue
tmpgasnames = subtree[subnode_id].data['gas_precursors']
tmpadsnames = subtree[subnode_id].data['adsorbates']
gas_names.extend(tmpgasnames)
Expand Down
Loading