Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 20:12:59 -08:00
parent 29b0d3b5d0
commit e0f88cf27a
12 changed files with 482 additions and 465 deletions

View File

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