add autopep8

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2022-02-27 20:14:39 -08:00
parent e0f88cf27a
commit 5b77fbdbd0
13 changed files with 461 additions and 477 deletions

View File

@ -1,10 +1,9 @@
from enum import Enum
class ServerEnv(str, Enum):
PRODUCTION = 'production'
DEVELOPMENT = 'development'
PREVIEW = 'preview'
PRODUCTION = 'production'
DEVELOPMENT = 'development'
PREVIEW = 'preview'
def __str__(self) -> str:
return str(self.value)
def __str__(self) -> str:
return str(self.value)