From bcf7ea30c53f8fa1f52cbeb068142648026dd676 Mon Sep 17 00:00:00 2001 From: Tobotimus Date: Sat, 2 Jun 2018 11:20:06 +1000 Subject: [PATCH] [V3 Core] Add a much-needed forward reference (#1763) --- redbot/core/core_commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/redbot/core/core_commands.py b/redbot/core/core_commands.py index 05700b955..f97c2222e 100644 --- a/redbot/core/core_commands.py +++ b/redbot/core/core_commands.py @@ -45,7 +45,7 @@ _ = i18n.Translator("Core", __file__) class CoreLogic: - def __init__(self, bot: Red): + def __init__(self, bot: "Red"): self.bot = bot async def _load(self, cog_names: list): @@ -642,7 +642,7 @@ class Core(CoreLogic): """ Toggle whether to use the bot owner-configured colour for embeds. - Default is to not use the bot's configured colour, in which case the + Default is to not use the bot's configured colour, in which case the colour used will be the colour of the bot's top role. """ current_setting = await ctx.bot.db.guild(ctx.guild).use_bot_color() @@ -992,7 +992,7 @@ class Core(CoreLogic): """ Set the tagline to be used. - This setting only applies to embedded help. If no tagline is + This setting only applies to embedded help. If no tagline is specified, the default will be used instead. """ if tagline is None: