Method: pylint.run_symilar
Calls: 2, Exceptions: 2, Paths: 1Back
Path 1: 2 calls (1.0)
None (1) ['/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/test_pylint_runners.py'] (1)
SystemExit (2)
1def run_symilar(argv: Sequence[str] | None = None) -> NoReturn:
2 """Run symilar.
3
4 argv can be a sequence of strings normally supplied as arguments on the command line
5 """
6 from pylint.checkers.similar import Run as SimilarRun
7
8 SimilarRun(argv or sys.argv[1:])