Files
kittycad.py/kittycad/models/unit_force_format.py

13 lines
230 B
Python
Raw Normal View History

2022-07-25 22:46:48 +00:00
from enum import Enum
class UnitForceFormat(str, Enum):
NEWTON = 'newton'
POUND = 'pound'
DYNE = 'dyne'
KILOPOND = 'kilopond'
2022-07-25 22:46:48 +00:00
POUNDAL = 'poundal'
def __str__(self) -> str:
return str(self.value)