Updated help.py
Fixed type for annotation in init method
This commit is contained in:
parent
94d6f8f933
commit
d10c635982
|
|
@ -10,7 +10,7 @@ Usage: help [<command1>, <command2>, ..., <commandn>]
|
||||||
|
|
||||||
__cmd_name__ = "help"
|
__cmd_name__ = "help"
|
||||||
|
|
||||||
def __init__(self, *, data = argparse.Namespace, args: list[str] = []) -> None:
|
def __init__(self, *, data: argparse.Namespace, args: list[str] = []) -> None:
|
||||||
super().__init__()
|
super().__init__()
|
||||||
self.data = data
|
self.data = data
|
||||||
self.rargs = args
|
self.rargs = args
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user