Method: pylint._run_pylint_config
Calls: 1, Exceptions: 1, Paths: 1Back
Path 1: 1 calls (1.0)
[''] (1)
SystemExit (1)
1def _run_pylint_config(argv: Sequence[str] | None = None) -> None:
2 """Run pylint-config.
3
4 argv can be a sequence of strings normally supplied as arguments on the command line
5 """
6 from pylint.lint.run import _PylintConfigRun
7
8 _PylintConfigRun(argv or sys.argv[1:])