Searched defs:DecoratorCallable (Results 1 – 2 of 2) sorted by relevance
108 DecoratorCallable = TypeVar("DecoratorCallable", bound=Callable[..., Any]) variable
3598 def _inspectkwargs(func: DecoratorCallable) -> None:3614 func: DecoratorCallable,3635 func: DecoratorCallable,3657 def func(cmd: DecoratorCallable) -> DecoratorCallable:3668 …def addoutput(cls, cmd: DecoratorCallable) -> Callable[[DecoratorCallable], DecoratorCallable]: #…3672 def func(processor: DecoratorCallable) -> DecoratorCallable:3679 …def addcomplete(cls, cmd: DecoratorCallable) -> Callable[[DecoratorCallable], DecoratorCallable]: …3683 def func(processor: DecoratorCallable) -> DecoratorCallable:3852 def AutoArgparse(func: DecoratorCallable) -> None: