aboutsummaryrefslogtreecommitdiffstats
path: root/botstrap.py
diff options
context:
space:
mode:
authorGravatar shtlrs <[email protected]>2023-03-19 17:47:31 +0100
committerGravatar shtlrs <[email protected]>2023-03-19 17:47:31 +0100
commit6a782da04193b825220de2a9cefab1983351e134 (patch)
tree2334aba2f07d40d57aa49fc61e7ee743a0dc9841 /botstrap.py
parentremove olf version o fupgrade to community func (diff)
remove "circular" referencing of channel names
Diffstat (limited to 'botstrap.py')
-rw-r--r--botstrap.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/botstrap.py b/botstrap.py
index e2a9534d2..f882f48ab 100644
--- a/botstrap.py
+++ b/botstrap.py
@@ -16,9 +16,9 @@ BOT_TOKEN = os.getenv("BOT_TOKEN", None)
GUILD_ID = os.getenv("GUILD_ID", None)
COMMUNITY_FEATURE = "COMMUNITY"
-PYTHON_HELP_CHANNEL_NAME = _Channels.__fields__["python_help"].name
-ANNOUNCEMENTS_CHANNEL_NAME = _Channels.__fields__["announcements"].name
-RULES_CHANNEL_NAME = _Channels.__fields__["rules"].name
+PYTHON_HELP_CHANNEL_NAME = "python_help"
+ANNOUNCEMENTS_CHANNEL_NAME = "announcements"
+RULES_CHANNEL_NAME = "rules"
GUILD_FORUM_TYPE = 15