2023-07-07 19:22:51 -07:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class Direction(str, Enum):
|
2023-11-27 16:01:20 -08:00
|
|
|
"""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)
|