aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bot/cogs/source.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/bot/cogs/source.py b/bot/cogs/source.py
index 223552651..f1db745cd 100644
--- a/bot/cogs/source.py
+++ b/bot/cogs/source.py
@@ -35,7 +35,9 @@ class SourceConverter(commands.Converter):
elif argument.lower() in tags_cog._cache:
return argument.lower()
- raise commands.BadArgument(f"Unable to convert `{argument}` to valid command{', tag,' if show_tag else ''} or Cog.")
+ raise commands.BadArgument(
+ f"Unable to convert `{argument}` to valid command{', tag,' if show_tag else ''} or Cog."
+ )
class BotSource(commands.Cog):