Method: pylint.testutils.functional.lint_module_output_update.LintModuleOutputUpdate.__init__
Calls: 3, Exceptions: 0, Paths: 1Back
Path 1: 3 calls (1.0)
FunctionalTestFile (3)
None (3)
1def __init__(
2 self, test_file: FunctionalTestFile, config: Config | None = None
3 ) -> None:
4 if not PY38_PLUS:
5 raise RuntimeError(
6 "You need at least python 3.8 for the functional test updater to work. "
7 "This is because python 3.8 includes a new AST parser, which amongst others "
8 "returns the end line and end column of most nodes."
9 )
10 super().__init__(test_file, config)