fix(nerdify): fixed missing kwarg
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 40s
Some checks failed
Pylint / Pylint (3.11) (push) Failing after 40s
This commit is contained in:
parent
40056aec9a
commit
35b0e6b5e5
1 changed files with 1 additions and 1 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Reference in a new issue