from enum import Enum class UnitChargeFormat(str, Enum): """The valid types of charge unit formats.""" # noqa: E501 """# """ # noqa: E501 COULOMB = "coulomb" """# """ # noqa: E501 AMPERE_HOUR = "ampere_hour" def __str__(self) -> str: return str(self.value)