aiidateam / aiida-pseudo

MIT License
5 stars 8 forks source link

Use `typing.NamedTuple` for pseudo family configurations #111

Closed sphuber closed 2 years ago

sphuber commented 2 years ago

The SsspConfiguration and PseudoDojoConfiguration tuples were defined using collections.namedtuple. These are replaced by using typing.NamedTuple which not only provides type hints for the members but it allows to define the __str__ method, which makes it easier to use the configuration in formatted strings.