from enum import Enum class UnitRadiationFormat(str, Enum): """The valid types of radiation unit formats. These describe the radiation energy absorbed by a mass or material and/or how it affects the relative damage to the human body.""" # noqa: E501 """# """ # noqa: E501 GRAY = "gray" """# """ # noqa: E501 SIEVERT = "sievert" """# """ # noqa: E501 RAD = "rad" def __str__(self) -> str: return str(self.value)