Skip to content

Commit 0145c6c

Browse files
committed
Fix type hints.
1 parent 4f72e00 commit 0145c6c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

consolekit/testing.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,15 +103,15 @@ def __init__(
103103
) -> None:
104104

105105
if _click_major >= 8:
106-
super().__init__(
107-
runner=runner,
108-
stdout_bytes=stdout_bytes,
109-
stderr_bytes=stderr_bytes,
110-
exit_code=exit_code,
111-
exception=exception,
112-
exc_info=exc_info,
113-
return_value=None,
114-
)
106+
super().__init__( # type: ignore
107+
runner=runner,
108+
stdout_bytes=stdout_bytes,
109+
stderr_bytes=stderr_bytes,
110+
exit_code=exit_code,
111+
exception=exception,
112+
exc_info=exc_info,
113+
return_value=None,
114+
)
115115
else:
116116
super().__init__(
117117
runner=runner,

0 commit comments

Comments
 (0)