From a907be45c4328ac745ffdf6e1279a5fd7fde60ae Mon Sep 17 00:00:00 2001 From: Markus Keil Date: Wed, 17 Jan 2024 09:02:34 +0100 Subject: [PATCH] fix type in env --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index a2bd0c9..b4ff063 100644 --- a/main.py +++ b/main.py @@ -33,7 +33,7 @@ S3_SECRET_KEY = os.getenv('S3_SECRET_KEY') S3_ENDPOINT = os.getenv('S3_ENDPOINT') -HEARTBEAT_URL = os.getenv('HEARTBEAT_URL ') +HEARTBEAT_URL = os.getenv('HEARTBEAT_URL') # Prepare discord connection intents = nextcord.Intents.default()