We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b093997 commit a7817f0Copy full SHA for a7817f0
pydis_core/exts/source.py
@@ -12,6 +12,8 @@
12
from pydis_core import BotBase as Bot
13
14
15
+GITHUB_AVATAR = "https://avatars1.githubusercontent.com/u/9919"
16
+
17
class _TagIdentifierStub(NamedTuple):
18
"""A minmally functioning stub representing a tag identifier."""
19
@@ -63,7 +65,7 @@ async def source_command(
63
65
if not source_item:
64
66
embed = Embed(title=f"{self.bot.user.name}'s GitHub Repository")
67
embed.add_field(name="Repository", value=f"[Go to GitHub]({self.github_repo})")
- embed.set_thumbnail(url="https://avatars1.githubusercontent.com/u/9919")
68
+ embed.set_thumbnail(url=GITHUB_AVATAR)
69
await ctx.send(embed=embed)
70
return
71
0 commit comments