Path 1: 8 calls (0.8)

None (8)

'usage: pylint [options]\n\noptions:\n -h, --help show this help message and exit\n\nCommands:\n Options which are actually commands. Opt...

1def help(self, level: int | None = None) -> str:
2        """Return the usage string based on the available options."""
3        if level is not None:
4            warnings.warn(
5                "Supplying a 'level' argument to help() has been deprecated."
6                "You can call help() without any arguments.",
7                DeprecationWarning,
8                stacklevel=2,
9            )
10        return self._arg_parser.format_help()
            

Path 2: 2 calls (0.2)

1 (2)

'usage: pylint [options]\n\noptions:\n -h, --help show this help message and exit\n\nMain:\n --ignore [,...]\n ...

1def help(self, level: int | None = None) -> str:
2        """Return the usage string based on the available options."""
3        if level is not None:
4            warnings.warn(
5                "Supplying a 'level' argument to help() has been deprecated."
6                "You can call help() without any arguments.",
7                DeprecationWarning,
8                stacklevel=2,
9            )
10        return self._arg_parser.format_help()