Skip to content

Commit

Permalink
file open change
Browse files Browse the repository at this point in the history
  • Loading branch information
kmlefran committed Dec 5, 2023
1 parent 632de18 commit 3a0d2d4
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.18"
__version__ = "0.2.19"
2 changes: 1 addition & 1 deletion aiida_aimall/workchains.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ def generate_cml_fragments(params, cml_Dict):
): # pylint:disable=consider-iterating-dictionary
out_dict[rep_key] = DictData(value)
else:
with open("repeated_smiles.txt", encoding="utf-8") as of:
with open("repeated_smiles.txt", "w", encoding="utf-8") as of:
of.write(f"{rep_key} repeated\n")
col_names = list(out_frame.columns)
# Find indices of relevant columns
Expand Down

0 comments on commit 3a0d2d4

Please sign in to comment.