/opt/imh-python/lib/python3.9/site-packages/pylint/testutils/_primer
NameSizeModeActions
__pycache__/-0755rm
package_to_lint.py51020644editdlrm
primer.py46850644editdlrm
primer_command.py9990644editdlrm
primer_compare_command.py69890644editdlrm
primer_prepare_command.py20400644editdlrm
primer_run_command.py45200644editdlrm
__init__.py3890644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/pylint/testutils/_primer/primer_command.py (999B)
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html # For details: https://github.com/pylint-dev/pylint/blob/main/LICENSE # Copyright (c) https://github.com/pylint-dev/pylint/blob/main/CONTRIBUTORS.txt from __future__ import annotations import abc import argparse from pathlib import Path from typing import TypedDict from pylint.reporters.json_reporter import OldJsonExport from pylint.testutils._primer import PackageToLint class PackageData(TypedDict): commit: str messages: list[OldJsonExport] PackageMessages = dict[str, PackageData] class PrimerCommand: """Generic primer action with required arguments.""" def __init__( self, primer_directory: Path, packages: dict[str, PackageToLint], config: argparse.Namespace, ) -> None: self.primer_directory = primer_directory self.packages = packages self.config = config @abc.abstractmethod def run(self) -> None: pass