Skip to content

Commit d678856

Browse files
committed
Fixed type hint.
1 parent a4c8536 commit d678856

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cmd2/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ def arg_decorator(func: ArgparseCommandFunc[CmdOrSet]) -> RawCommandFuncOptional
278278
"""
279279

280280
@functools.wraps(func)
281-
def cmd_wrapper(*args: Any, **kwargs: dict[str, Any]) -> bool | None:
281+
def cmd_wrapper(*args: Any, **kwargs: Any) -> bool | None:
282282
"""Command function wrapper which translates command line into argparse Namespace and call actual command function.
283283
284284
:param args: All positional arguments to this function. We're expecting there to be:

0 commit comments

Comments
 (0)