from enum import Enum class UnitMagneticFieldStrengthFormat(str, Enum): """The valid types of magnetic field strength unit formats.""" # noqa: E501 """# """ # noqa: E501 TESLA = "tesla" """# """ # noqa: E501 GAUSS = "gauss" def __str__(self) -> str: return str(self.value)