diff --git a/src/config.py b/src/config.py index 88ba142..cf827b9 100644 --- a/src/config.py +++ b/src/config.py @@ -4,6 +4,4 @@ load_dotenv() TOKEN = os.environ.get("TOKEN") # required - -DEV_GUILD = os.environ.get("DEV_GUILD", 0) DEBUG = os.environ.get("DEBUG", False) diff --git a/src/main.py b/src/main.py index 2a202be..17bdaa1 100644 --- a/src/main.py +++ b/src/main.py @@ -6,7 +6,7 @@ import interactions as discord from loguru import logger from pathlib import Path -from config import DEBUG, DEV_GUILD, TOKEN +from config import DEBUG, TOKEN if __name__ == "__main__": # Configure logging @@ -26,7 +26,6 @@ activity=discord.Activity( name="Webgroup issues", type=discord.ActivityType.WATCHING ), - debug_scope=DEV_GUILD, auto_defer=True, sync_ext=True, )