from enum import Enum class UnitAreaFormat(str, Enum): """The valid types of area unit formats.""" # noqa: E501 """# """ # noqa: E501 SQUARE_METER = "square_meter" """# """ # noqa: E501 SQUARE_FOOT = "square_foot" """# """ # noqa: E501 SQUARE_INCH = "square_inch" """# """ # noqa: E501 SQUARE_MILE = "square_mile" """# """ # noqa: E501 SQUARE_KILOMETER = "square_kilometer" """# """ # noqa: E501 HECTARE = "hectare" """# """ # noqa: E501 ACRE = "acre" def __str__(self) -> str: return str(self.value)