Files
kittycad.py/kittycad/models/unit_power_format.py

11 lines
196 B
Python
Raw Normal View History

2022-07-25 22:46:48 +00:00
from enum import Enum
class UnitPowerFormat(str, Enum):
WATT = 'watt'
HORSEPOWER = 'horsepower'
MILLIWATT = 'milliwatt'
def __str__(self) -> str:
return str(self.value)