From 0bef642248d08b5bcb524fc64dd15adfa98f661d Mon Sep 17 00:00:00 2001 From: Phoenix Isaac Pereira Date: Wed, 5 Jun 2024 18:14:14 +0930 Subject: [PATCH] chore(ci): Make guild id an int --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.py b/src/main.py index 241d0c1..cd592a5 100644 --- a/src/main.py +++ b/src/main.py @@ -9,7 +9,7 @@ load_dotenv() # Retrieve guild ID and bot token from environment variables -GUILD_ID = os.getenv("GUILD_ID") +GUILD_ID = int(os.getenv("GUILD_ID")) BOT_TOKEN = os.getenv("BOT_TOKEN") # Load the permissions the bot has been granted in the previous configuration