Skip to content

Commit 7e4e716

Browse files
committed
Fix type check error
Signed-off-by: Bernát Gábor <[email protected]>
1 parent c86bafc commit 7e4e716

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/sphinx_argparse_cli/_logic.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,7 @@ def __init__(
7373
):
7474
options.setdefault("group_title_prefix", None)
7575
options.setdefault("group_sub_title_prefix", None)
76-
super().__init__( # type: ignore # too many arguments to object
77-
name, arguments, options, content, lineno, content_offset, block_text, state, state_machine
78-
)
76+
super().__init__(name, arguments, options, content, lineno, content_offset, block_text, state, state_machine)
7977
self._parser: ArgumentParser | None = None
8078
self._std_domain: StandardDomain = cast(StandardDomain, self.env.get_domain("std"))
8179

0 commit comments

Comments
 (0)