Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions khl/command/parser.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
"""parser: component used in command args handling, convert string token to fit the command signature"""
import asyncio
import copy
import inspect
import logging
Expand Down Expand Up @@ -29,7 +28,7 @@ def _get_param_type(param: Union[inspect.Parameter, None]):


def _wrap_one_param_func(func: Callable) -> Callable:
def wrapper(msg: Message, client: Client, token: str):
def wrapper(_msg: Message, _client: Client, token: str):
return func(token)
return wrapper

Expand Down
Loading