diff options
author | 2025-04-19 11:40:53 +0100 | |
---|---|---|
committer | 2025-04-19 11:40:53 +0100 | |
commit | 3568c5d6b3c75ee0bf63159a628662a71b93ab61 (patch) | |
tree | bb9005cafb3778fd6dcc96319705aabb55010323 | |
parent | Tidy PEP code + improve caching (diff) |
Fix: Move PEP link back to title
-rw-r--r-- | bot/exts/info/pep.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/pep.py b/bot/exts/info/pep.py index 7f1823d8b..4655b21ff 100644 --- a/bot/exts/info/pep.py +++ b/bot/exts/info/pep.py @@ -59,7 +59,7 @@ class PythonEnhancementProposals(Cog): """Generate PEP embed.""" embed = Embed( title=f"**PEP {pep['number']} - {pep['title']}**", - description=f"[Link]({pep['url']})", + url=pep["url"], ) embed.set_thumbnail(url=ICON_URL) |