Skip to content

Commit

Permalink
chore(ci): Make guild id an int
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixpereira committed Jun 5, 2024
1 parent 887e4ae commit 0bef642
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0bef642

Please sign in to comment.