Skip to content

Commit

Permalink
Update fragment label type
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Dec 4, 2023
1 parent c628c7b commit 19f6c6f
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.7"
__version__ = "0.2.8"
2 changes: 1 addition & 1 deletion aiida_aimall/controllers.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ def get_inputs_and_processclass_from_extras(self, extras_values):
code = orm.load_code(self.code_label)
structure = self.get_parent_node_from_extras(extras_values)
inputs = {
"fragment_label": extras_values[0],
"fragment_label": Str(extras_values[0]),
"code": code,
"parameters": Dict(self.g16_sp_params),
"structure_str": structure,
Expand Down

0 comments on commit 19f6c6f

Please sign in to comment.