From 2d8079f6e87b1e455366c2b4f0df548638708dba Mon Sep 17 00:00:00 2001 From: Micha Albert Date: Thu, 15 Aug 2024 18:04:37 +0000 Subject: [PATCH] my rapper name is lil TypeError --- backend/main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/backend/main.py b/backend/main.py index 6cb1918..96e1c33 100644 --- a/backend/main.py +++ b/backend/main.py @@ -28,9 +28,9 @@ scheduler = AsyncIOScheduler() oauth2_config = OAuth2Config( allow_http=False, - jwt_secret=os.getenv("JWT_SECRET"), - jwt_expires=os.getenv("JWT_EXPIRES"), - jwt_algorithm=os.getenv("JWT_ALGORITHM"), + jwt_secret=os.environ["JWT_SECRET"], + jwt_expires=os.environ["JWT_EXPIRES"], + jwt_algorithm=os.environ["JWT_ALGORITHM"], clients=[ OAuth2Client( backend=SlackOAuth2,