Method: pylint.config.argument._StoreNewNamesArgument.__init__
Calls: 1141, Exceptions: 0, Paths: 1Back
Path 1: 1141 calls (1.0)
['--ignore-mixin-members'] (1141)
True (1141)
'yn' (1141)
None (1141)
'Tells whether missing members accessed in mixin class should be ignored. A class is considered mixin if its name matches the mixin-class-rgx option.'...
'
False (1141)
dict (1141)
None (1141)
1def __init__(
2 self,
3 *,
4 flags: list[str],
5 default: _ArgumentTypes,
6 arg_type: str,
7 choices: list[str] | None,
8 arg_help: str,
9 metavar: str,
10 hide_help: bool,
11 kwargs: dict[str, Any],
12 section: str | None,
13 ) -> None:
14 super().__init__(
15 flags=flags,
16 action=_NewNamesAction,
17 default=default,
18 arg_type=arg_type,
19 choices=choices,
20 arg_help=arg_help,
21 metavar=metavar,
22 hide_help=hide_help,
23 section=section,
24 )
25
26 self.kwargs = kwargs
27 """Any additional arguments passed to the action."""