Files
kittycad.py/kittycad/models/unit_temperature_format.py
2022-07-25 22:46:48 +00:00

13 lines
250 B
Python

from enum import Enum
class UnitTemperatureFormat(str, Enum):
KELVIN = 'kelvin'
CELSIUS = 'celsius'
FAHRENHEIT = 'fahrenheit'
REAUMUR = 'reaumur'
RANKINE = 'rankine'
def __str__(self) -> str:
return str(self.value)