Update api spec (#107)
* YOYO NEW API SPEC! * I have generated the latest API! --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
13
kittycad/models/direction.py
Normal file
13
kittycad/models/direction.py
Normal file
@ -0,0 +1,13 @@
|
||||
from enum import Enum
|
||||
|
||||
|
||||
class Direction(str, Enum):
|
||||
"""Specifies the sign of a co-ordinate axis.""" # noqa: E501
|
||||
|
||||
"""# Increasing numbers. """ # noqa: E501
|
||||
POSITIVE = "positive"
|
||||
"""# Decreasing numbers. """ # noqa: E501
|
||||
NEGATIVE = "negative"
|
||||
|
||||
def __str__(self) -> str:
|
||||
return str(self.value)
|
Reference in New Issue
Block a user