Skip to content

Commit 3beee54

Browse files
committed
Remove unneeded constant
1 parent 5a50fdc commit 3beee54

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

bot/exts/help_channels/_channel.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515

1616
ASKING_GUIDE_URL = "https://pythondiscord.com/pages/asking-good-questions/"
1717
BRANDING_REPO_RAW_URL = "https://raw.githubusercontent.com/python-discord/branding"
18-
POST_TITLE = "Python help channel"
1918

2019
NEW_POST_MSG = """
2120
**Remember to:**
@@ -83,7 +82,7 @@ async def send_opened_post_message(post: discord.Thread) -> None:
8382
color=constants.Colours.bright_green,
8483
description=NEW_POST_MSG,
8584
)
86-
embed.set_author(name=f"{POST_TITLE} opened", icon_url=NEW_POST_ICON_URL)
85+
embed.set_author(name="Python help channel opened", icon_url=NEW_POST_ICON_URL)
8786
embed.set_footer(text=NEW_POST_FOOTER)
8887
await post.send(embed=embed, content=post.owner.mention)
8988

0 commit comments

Comments
 (0)