from enum import Enum class UnitPressureFormat(str, Enum): """The valid types of pressure unit formats.""" # noqa: E501 """# """ # noqa: E501 PASCAL = "pascal" """# """ # noqa: E501 BAR = "bar" """# MilliBar """ # noqa: E501 MBAR = "mbar" """# """ # noqa: E501 ATMOSPHERE = "atmosphere" """# psi - """ # noqa: E501 POUNDS_PER_SQUARE_INCH = "pounds_per_square_inch" def __str__(self) -> str: return str(self.value)