fix(nerdify): fixed missing kwarg

This commit is contained in:
Seaswimmer 2023-12-28 19:02:52 -05:00
parent 40056aec9a
commit 35b0e6b5e5
Signed by untrusted user: cswimr
GPG key ID: 1EBC234EEDA901AE

View file

@ -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.