from enum import Enum class UnitDensityFormat(str, Enum): """The valid types of density unit formats.""" # noqa: E501 """# """ # noqa: E501 KILOGRAMS_PER_CUBIC_METER = "kilograms_per_cubic_meter" """# """ # noqa: E501 GRAMS_PER_MILLILITER = "grams_per_milliliter" """# """ # noqa: E501 KILOGRAMS_PER_LITER = "kilograms_per_liter" """# """ # noqa: E501 OUNCES_PER_CUBIC_FOOT = "ounces_per_cubic_foot" """# """ # noqa: E501 OUNCES_PER_CUBIC_INCH = "ounces_per_cubic_inch" """# """ # noqa: E501 OUNCES_PER_GALLON = "ounces_per_gallon" """# """ # noqa: E501 POUNDS_PER_CUBIC_FOOT = "pounds_per_cubic_foot" """# """ # noqa: E501 POUNDS_PER_CUBIC_INCH = "pounds_per_cubic_inch" """# """ # noqa: E501 POUNDS_PER_GALLON = "pounds_per_gallon" """# and """ # noqa: E501 SLUGS_PER_CUBIC_FOOT = "slugs_per_cubic_foot" def __str__(self) -> str: return str(self.value)