Method: pylint.config.callback_actions._AccessLinterObjectAction.__init__
Calls: 4464, Exceptions: 0, Paths: 1Back
Path 1: 4464 calls (1.0)
['--output-format', '-f'] (1488) ['--enable', '-e'] (1488) ['--disable', '-d'] (1488)
'output_format' (1488) 'enable' (1488) 'disable' (1488)
None (4464)
None (4464)
None (4464)
None (4464)
None (4464)
False (4464)
'Set the output format. Available formats are text, parseable, colorized, json and msvs (visual studio). You can also give a reporter class, e.g. mypa...
'
dict (4464)
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: PyLinter,
14 ) -> None:
15 self.linter = kwargs["linter"]
16
17 super().__init__(
18 option_strings,
19 dest,
20 1,
21 const,
22 default,
23 type,
24 choices,
25 required,
26 help,
27 metavar,
28 )