Skip to content

Commit 3c3ee97

Browse files
author
Your Name
committed
Removed InputType
1 parent 581db53 commit 3c3ee97

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/tap/tapify.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,9 @@
3232

3333
from tap import Tap
3434

35-
InputType = TypeVar("InputType")
3635
OutputType = TypeVar("OutputType")
3736

38-
_ClassOrFunction = Union[Callable[[InputType], OutputType], type[OutputType]]
37+
_ClassOrFunction = Union[Callable[..., OutputType], type[OutputType]]
3938

4039

4140
@dataclasses.dataclass

0 commit comments

Comments
 (0)