update functions;

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 21:48:13 -08:00
parent 2d90bb61be
commit cbf5f4df6d
16 changed files with 544 additions and 481 deletions

View File

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