Skip to content

Commit

Permalink
Fix add_node typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Dec 4, 2023
1 parent cc36921 commit 36e7686
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiida_aimall/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
A plugin to interface AIMAll with AiiDA
"""

__version__ = "0.2.5"
__version__ = "0.2.6"
2 changes: 1 addition & 1 deletion aiida_aimall/workchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ def dict_to_struct_reor(self):
struct_dict = dict_to_structure(self.ctx.rot_struct_dict)
reor_struct_group = load_group("reor_structs")
struct_dict.store()
reor_struct_group.add_node(struct_dict)
reor_struct_group.add_nodes(struct_dict)
struct_extras = EntityExtras(struct_dict)
struct_extras.set("smiles", self.frag_label.value)
self.ctx.rot_structure = struct_dict

0 comments on commit 36e7686

Please sign in to comment.