from enum import Enum class UnitForceFormat(str, Enum): """The valid types of force unit formats.""" # noqa: E501 """# """ # noqa: E501 NEWTON = "newton" """# """ # noqa: E501 POUND = "pound" """# """ # noqa: E501 DYNE = "dyne" """# """ # noqa: E501 KILOPOND = "kilopond" """# """ # noqa: E501 POUNDAL = "poundal" def __str__(self) -> str: return str(self.value)