diff options
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: |