aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar wookie184 <[email protected]>2025-04-19 11:40:53 +0100
committerGravatar wookie184 <[email protected]>2025-04-19 11:40:53 +0100
commit3568c5d6b3c75ee0bf63159a628662a71b93ab61 (patch)
treebb9005cafb3778fd6dcc96319705aabb55010323
parentTidy PEP code + improve caching (diff)
Fix: Move PEP link back to title
-rw-r--r--bot/exts/info/pep.py2
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)