diff options
author | 2023-06-04 20:34:14 +0100 | |
---|---|---|
committer | 2023-06-04 20:34:14 +0100 | |
commit | 1a362c04eb4d5d8f3c531a590d73cf5d7300ace8 (patch) | |
tree | accbe4d840b036dcc9502eed395f19400f5ad9a3 /dev/bot/cog.py | |
parent | Merge pull request #175 from python-discord/log-when-waiting-for-guild-to-be-... (diff) | |
parent | Add 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.py | 2 |
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: |