Skip to content

Commit

Permalink
use original dict for now
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielYang59 committed Dec 11, 2024
1 parent d2e97cb commit 2b37fc9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/pymatgen/io/abinit/pseudos.py
Original file line number Diff line number Diff line change
Expand Up @@ -601,6 +601,8 @@ def _dict_from_lines(lines, key_nums, sep=None) -> dict:
if len(lines) != len(key_nums):
raise ValueError(f"{lines = }\n{key_nums = }")

# TODO: PR 4223: kwargs was using `monty.collections.Namespace`,
# revert to original implementation
kwargs: dict = {}

for idx, nk in enumerate(key_nums):
Expand Down

0 comments on commit 2b37fc9

Please sign in to comment.