aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/core/source.py
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-05-06 16:13:14 +0100
committerGravatar Chris Lovering <[email protected]>2023-05-09 15:42:23 +0100
commit9266ce3a1b3e9f20ca01e8bfc75530f1ac21f7cf (patch)
treee159a0fae7850d706d713cf2b49dfed2140ce655 /bot/exts/core/source.py
parentApply fixes for ruff linting (diff)
Move unshared contants inside modules
Diffstat (limited to 'bot/exts/core/source.py')
-rw-r--r--bot/exts/core/source.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/bot/exts/core/source.py b/bot/exts/core/source.py
index 592156fc..7c67bcb5 100644
--- a/bot/exts/core/source.py
+++ b/bot/exts/core/source.py
@@ -5,10 +5,13 @@ from discord import Embed
from discord.ext import commands
from bot.bot import Bot
-from bot.constants import Channels, Source, WHITELISTED_CHANNELS
+from bot.constants import Channels, WHITELISTED_CHANNELS
from bot.utils.converters import SourceConverter, SourceType
from bot.utils.decorators import whitelist_override
+GITHUB_BOT_URL = "https://github.com/python-discord/sir-lancebot"
+BOT_AVATAR_URL = "https://avatars1.githubusercontent.com/u/9919"
+
class BotSource(commands.Cog):
"""Displays information about the bot's source code."""
@@ -19,8 +22,8 @@ class BotSource(commands.Cog):
"""Display information and a GitHub link to the source code of a command, tag, or cog."""
if not source_item:
embed = Embed(title="Sir Lancebot's GitHub Repository")
- embed.add_field(name="Repository", value=f"[Go to GitHub]({Source.github})")
- embed.set_thumbnail(url=Source.github_avatar_url)
+ embed.add_field(name="Repository", value=f"[Go to GitHub]({GITHUB_BOT_URL})")
+ embed.set_thumbnail(url=BOT_AVATAR_URL)
await ctx.send(embed=embed)
return
@@ -57,7 +60,7 @@ class BotSource(commands.Cog):
file_location = Path(filename).relative_to(Path.cwd()).as_posix()
- url = f"{Source.github}/blob/main/{file_location}{lines_extension}"
+ url = f"{GITHUB_BOT_URL}/blob/main/{file_location}{lines_extension}"
return url, file_location, first_line_no or None
@@ -73,7 +76,7 @@ class BotSource(commands.Cog):
description = source_object.description.splitlines()[0]
embed = Embed(title=title, description=description)
- embed.set_thumbnail(url=Source.github_avatar_url)
+ embed.set_thumbnail(url=BOT_AVATAR_URL)
embed.add_field(name="Source Code", value=f"[Go to GitHub]({url})")
line_text = f":{first_line}" if first_line else ""
embed.set_footer(text=f"{location}{line_text}")