Skip to content

Commit

Permalink
Update dep
Browse files Browse the repository at this point in the history
  • Loading branch information
ladinesa committed Aug 23, 2024
1 parent b341f8a commit a0525db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies = [
"nomad-lab>=1.2.0",
"nomad-schema-plugin-simulation-workflow@git+https://github.com/nomad-coe/nomad-schema-plugin-simulation-workflow.git@develop",
"nomad-schema-plugin-run@git+https://github.com/nomad-coe/nomad-schema-plugin-run.git@develop",
"lxml",
"lxml>=5.2",
"asr",
"xarray>=0.19.0",
"phonopy",
Expand Down
4 changes: 2 additions & 2 deletions workflowparsers/aflow/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ def parse(self, key=None):
for section in self._results.get('section', []):
if section.key_value is not None:
result = dict()
for key, value in section.get('key_value', []):
result[key] = value
for k, v in section.get('key_value', []):
result[k] = v
self._results[section.name] = result
elif section.array is not None:
self._results[section.name] = section.array
Expand Down

0 comments on commit a0525db

Please sign in to comment.