aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2025-01-18 17:15:36 +0000
committerGravatar Chris Lovering <[email protected]>2025-01-18 17:15:36 +0000
commit3beee54aaf77e0ef5dd18852955c8914badf060c (patch)
treecde4bfefe15a51ec2859a5e4de9a0261dee49572
parentUpdate supported Python versions in Snekbox help text (#3237) (diff)
Remove unneeded constant
-rw-r--r--bot/exts/help_channels/_channel.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/bot/exts/help_channels/_channel.py b/bot/exts/help_channels/_channel.py
index 9d76adf65..06d174e5c 100644
--- a/bot/exts/help_channels/_channel.py
+++ b/bot/exts/help_channels/_channel.py
@@ -15,7 +15,6 @@ log = get_logger(__name__)
ASKING_GUIDE_URL = "https://pythondiscord.com/pages/asking-good-questions/"
BRANDING_REPO_RAW_URL = "https://raw.githubusercontent.com/python-discord/branding"
-POST_TITLE = "Python help channel"
NEW_POST_MSG = """
**Remember to:**
@@ -83,7 +82,7 @@ async def send_opened_post_message(post: discord.Thread) -> None:
color=constants.Colours.bright_green,
description=NEW_POST_MSG,
)
- embed.set_author(name=f"{POST_TITLE} opened", icon_url=NEW_POST_ICON_URL)
+ embed.set_author(name="Python help channel opened", icon_url=NEW_POST_ICON_URL)
embed.set_footer(text=NEW_POST_FOOTER)
await post.send(embed=embed, content=post.owner.mention)