Method: pylint.lint.utils.get_fatal_error_message
Calls: 4, Exceptions: 0, Paths: 1Back
Path 1: 4 calls (1.0)
'/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/lint/test_pylinter.py' (2) 'mypath.py' (1) '/Users/andrehora/Documents/git/projects-...
PosixPath (4)
"Fatal error while checking '/Users/andrehora/Documents/git/projects-pathspotter/pylint/tests/lint/test_pylinter.py'. Please open an issue in our bug ...
1def get_fatal_error_message(filepath: str, issue_template_path: Path) -> str:
2 return (
3 f"Fatal error while checking '{filepath}'. "
4 f"Please open an issue in our bug tracker so we address this. "
5 f"There is a pre-filled template that you can use in '{issue_template_path}'."
6 )