Skip to content

Commit

Permalink
Fix frag_label variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Dec 4, 2023
1 parent 61399c5 commit 2af6eba
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ build/
dist/
pip-wheel-metadata/
pluginsetupsteps.ipynb
.isort.cfg
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.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion aiida_aimall/workchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ def g16_opt(self):
builder = GaussianCalculation.get_builder()
builder.structure_str = self.ctx.structure
builder.parameters = self.ctx.params_with_cm
builder.fragment_label = self.inputs.fragment_label
builder.fragment_label = self.inputs.frag_label
builder.code = self.inputs.g16_code
builder.wfxgroup = self.inputs.wfxgroup
builder.metadata.options.resources = {"num_machines": 1, "tot_num_mpiprocs": 1}
Expand Down

0 comments on commit 2af6eba

Please sign in to comment.