From 35b0e6b5e575a8f064f975953e9d915d1cd4a7ae Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Thu, 28 Dec 2023 19:02:52 -0500 Subject: [PATCH] fix(nerdify): fixed missing kwarg --- nerdify/nerdify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nerdify/nerdify.py b/nerdify/nerdify.py index 6993f4e..2b9cc7d 100644 --- a/nerdify/nerdify.py +++ b/nerdify/nerdify.py @@ -40,7 +40,7 @@ class Nerdify(commands.Cog): return f"\"{text}\" 🤓" async def type_message( - destination: discord.abc.Messageable, content: str, **kwargs: Any # noqa: ANN401 + self, destination: discord.abc.Messageable, content: str, **kwargs: Any # noqa: ANN401 ) -> discord.Message | None: """Simulate typing and sending a message to a destination.