* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
13 lines
230 B
Python
13 lines
230 B
Python
from enum import Enum
|
|
|
|
|
|
class UnitForceFormat(str, Enum):
|
|
NEWTON = 'newton'
|
|
POUND = 'pound'
|
|
DYNE = 'dyne'
|
|
KILOPOND = 'kilopond'
|
|
POUNDAL = 'poundal'
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|