aboutsummaryrefslogtreecommitdiffstats
path: root/botcore/_bot.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2022-04-02 20:05:53 +0100
committerGravatar GitHub <[email protected]>2022-04-02 20:05:53 +0100
commit7d00aec297e0e65653632037a3e497bff787bfb9 (patch)
treef4748800698892fc9940c217b5507011ec614d27 /botcore/_bot.py
parentInstall optional deps during CI (diff)
Use imperative mood in docstrings
Co-authored-by: Mark <[email protected]>
Diffstat (limited to 'botcore/_bot.py')
-rw-r--r--botcore/_bot.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/botcore/_bot.py b/botcore/_bot.py
index 55923dd0..a43bb344 100644
--- a/botcore/_bot.py
+++ b/botcore/_bot.py
@@ -138,7 +138,7 @@ class BotBase(commands.Bot):
self.all_commands.pop(alias, None)
async def add_cog(self, cog: commands.Cog) -> None:
- """Adds the given ``cog`` to the bot and logs the operation."""
+ """Add the given ``cog`` to the bot and log the operation."""
await super().add_cog(cog)
log.info(f"Cog loaded: {cog.qualified_name}")