We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f72e00 commit 0145c6cCopy full SHA for 0145c6c
consolekit/testing.py
@@ -103,15 +103,15 @@ def __init__(
103
) -> None:
104
105
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
- )
+ super().__init__( # type: ignore
+ runner=runner,
+ stdout_bytes=stdout_bytes,
+ stderr_bytes=stderr_bytes,
+ exit_code=exit_code,
+ exception=exception,
+ exc_info=exc_info,
+ return_value=None,
+ )
115
else:
116
super().__init__(
117
runner=runner,
0 commit comments