Path 1: 3136 calls (1.0)

['--exit-zero'] (1488) ['--from-stdin'] (1488) ['--all-ancestors', '-A'] (30) ['--all-associated', '-S'] (30) ['--show-builtin', '-b'] (30) ['--only-c...

'store_true' (3136)

False (3066) None (60) True (10)

'Always return a 0 (non-error) status code, even if lint errors are found. This is primarily useful in continuous integration scripts.' (1488) 'Interp...

False (3136)

None (3136)

1def __init__(
2        self,
3        *,
4        flags: list[str],
5        action: Literal["store_true"],
6        default: _ArgumentTypes,
7        arg_help: str,
8        hide_help: bool,
9        section: str | None,
10    ) -> None:
11        super().__init__(
12            flags=flags,
13            action=action,
14            default=default,
15            arg_help=arg_help,
16            hide_help=hide_help,
17            section=section,
18        )