Skip to content

Commit 9926894

Browse files
committed
Fix typing issues.
1 parent 8243840 commit 9926894

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_pytask/click.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def convert(
7575

7676
ParamTypeValue = TypeVar("ParamTypeValue")
7777

78-
class EnumChoice(Choice):
78+
class EnumChoice(Choice): # type: ignore[no-redef, type-arg]
7979
def __init__(
8080
self, choices: Iterable[ParamTypeValue], case_sensitive: bool = False
8181
) -> None:

0 commit comments

Comments
 (0)