Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ladinesa committed Aug 22, 2024
1 parent c341654 commit 8561a8f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ tests = [
"pytest-timeout==1.4.2",
"pytest-cov==2.7.1",
"astroid==2.11.7",
"lxml==4.7.1",
"lxml>=5.2",
"asr==0.4.1",
"xarray==0.20.2",
"xarray>=0.20.2",
"phonopy==2.11.0",
"h5py==3.6.0",
"h5py>=3.11.0",
"typing-extensions==4.4.0",
"ruff==0.1.8",
]
Expand Down
4 changes: 2 additions & 2 deletions workflowparsers/aflow/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,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 8561a8f

Please sign in to comment.