aboutsummaryrefslogtreecommitdiffstats
path: root/dev/bot/cog.py
diff options
context:
space:
mode:
authorGravatar ChrisJL <[email protected]>2023-06-04 20:34:14 +0100
committerGravatar GitHub <[email protected]>2023-06-04 20:34:14 +0100
commit1a362c04eb4d5d8f3c531a590d73cf5d7300ace8 (patch)
treeaccbe4d840b036dcc9502eed395f19400f5ad9a3 /dev/bot/cog.py
parentMerge pull request #175 from python-discord/log-when-waiting-for-guild-to-be-... (diff)
parentAdd changelog entry for ruff migration (diff)
Merge pull request #176 from python-discord/ruff-migration
Ruff migration
Diffstat (limited to 'dev/bot/cog.py')
-rw-r--r--dev/bot/cog.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/bot/cog.py b/dev/bot/cog.py
index 7746c54e..0da950f9 100644
--- a/dev/bot/cog.py
+++ b/dev/bot/cog.py
@@ -12,7 +12,7 @@ class Cog(commands.Cog):
@commands.Cog.listener()
async def on_ready(self) -> None:
"""Print a message when the client (re)connects."""
- print("Client is ready.")
+ print("Client is ready.") # noqa: T201
@commands.command()
async def reload(self, ctx: commands.Context) -> None: