Path 1: 6 calls (1.0)

['-h', '--help'] (6)

'help' (6)

None (6)

None (6)

'==SUPPRESS==' (6)

None (6)

None (6)

False (6)

'show this help message and exit' (6)

'' (6)

dict (6)

1def __init__(
2        self,
3        option_strings: Sequence[str],
4        dest: str,
5        nargs: None = None,
6        const: None = None,
7        default: None = None,
8        type: None = None,
9        choices: None = None,
10        required: bool = False,
11        help: str = "",
12        metavar: str = "",
13        **kwargs: argparse.ArgumentParser,
14    ) -> None:
15        self.parser = kwargs["parser"]
16
17        super().__init__(
18            option_strings,
19            dest,
20            0,
21            const,
22            default,
23            type,
24            choices,
25            required,
26            help,
27            metavar,
28        )