Coverage for icet/core/lattice_site.py: 100%
4 statements
« prev ^ index » next coverage.py v7.5.0, created at 2024-12-26 04:12 +0000
« prev ^ index » next coverage.py v7.5.0, created at 2024-12-26 04:12 +0000
1"""
2This module provides a Python interface to the LatticeSite class.
3"""
5from _icet import LatticeSite
8def __latticeSite_str(self):
9 return '{} : {}'.format(self.index, self.unitcell_offset)
12LatticeSite.__str__ = __latticeSite_str