Files
kittycad.py/kittycad/models/pong_enum.py
Jess Frazelle 5b77fbdbd0 add autopep8
Signed-off-by: Jess Frazelle <github@jessfraz.com>
2022-02-27 20:14:39 -08:00

8 lines
118 B
Python

from enum import Enum
class PongEnum(str, Enum):
PONG = 'pong'
def __str__(self) -> str:
return str(self.value)