Remove debug flag
diff --git a/server/plugins/github.py b/server/plugins/github.py
index ca51772..fb7382f 100644
--- a/server/plugins/github.py
+++ b/server/plugins/github.py
@@ -7,7 +7,7 @@
 import asyncio
 
 GRAPHQL_URL = "https://api.github.com/graphql"
-DEBUG = True  # We don't wanna do the PUT/DELETE right now, so let's not...
+DEBUG = False  # Set to True to disable GitHub API calls
 
 
 class GitHubOrganisation: