diff options
author | 2025-10-17 19:34:26 +0100 | |
---|---|---|
committer | 2025-10-17 19:34:26 +0100 | |
commit | 9145491f0c0068c1f080a3a3463648a6da302dd6 (patch) | |
tree | 9be903cbd2c163eeb1fab1d5561df55a0b63244d | |
parent | Dependency bumps (including pydis_core to 11.8.0) (diff) |
-rw-r--r-- | bot/exts/core/source.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bot/exts/core/source.py b/bot/exts/core/source.py index 7c67bcb5..6e581a27 100644 --- a/bot/exts/core/source.py +++ b/bot/exts/core/source.py @@ -17,7 +17,9 @@ class BotSource(commands.Cog): """Displays information about the bot's source code.""" @commands.command(name="source", aliases=("src",)) - @whitelist_override(channels=WHITELISTED_CHANNELS+(Channels.community_meta, Channels.dev_contrib)) + @whitelist_override( + channels=WHITELISTED_CHANNELS + (Channels.community_meta, Channels.dev_contrib, Channels.python_help) + ) async def source_command(self, ctx: commands.Context, *, source_item: SourceConverter = None) -> None: """Display information and a GitHub link to the source code of a command, tag, or cog.""" if not source_item: |