from enum import Enum class UnitRadioactivityFormat(str, Enum): """The valid types of radioactivity unit formats. These describe the amount of radiation emitted by a radioactive material.""" # noqa: E501 """# """ # noqa: E501 BECQUEREL = "becquerel" """# """ # noqa: E501 CURIE = "curie" """# """ # noqa: E501 RUTHERFORD = "rutherford" def __str__(self) -> str: return str(self.value)