Skip to content

Commit

Permalink
Remove dev guild config option
Browse files Browse the repository at this point in the history
  • Loading branch information
JedHazaymeh committed Dec 5, 2023
1 parent 6dd9005 commit 051c842
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 0 additions & 2 deletions src/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
3 changes: 1 addition & 2 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -26,7 +26,6 @@
activity=discord.Activity(
name="Webgroup issues", type=discord.ActivityType.WATCHING
),
debug_scope=DEV_GUILD,
auto_defer=True,
sync_ext=True,
)
Expand Down

0 comments on commit 051c842

Please sign in to comment.