Method: pylint.pyreverse.main.Run.run
Calls: 15, Exceptions: 0, Paths: 1Back
Path 1: 15 calls (1.0)
['/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/data'] (4) ['/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/pyrev...
0 (15)
1def run(self, args: list[str]) -> int:
2 """Checking arguments and run project."""
3 if not args:
4 print(self.help())
5 return 1
6 with fix_import_path(args):
7 project = project_from_files(
8 args,
9 project_name=self.config.project,
10 black_list=self.config.ignore_list,
11 )
12 linker = Linker(project, tag=True)
13 handler = DiadefsHandler(self.config)
14 diadefs = handler.get_diadefs(project, linker)
15 writer.DiagramWriter(self.config).write(diadefs)
16 return 0