fix ups and autopep8

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 20:15:59 -08:00
parent 5b77fbdbd0
commit 2a9ae9dc8d
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)