(self, location: Path | None = None)
| 517 | |
| 518 | class LinuxSourceManager(SourceManager): |
| 519 | def __init__(self, location: Path | None = None) -> None: |
| 520 | super().__init__(location) |
| 521 | |
| 522 | self.patches: list[Path] = [] |
| 523 | self._version: tuple[int, ...] = () |
| 524 | |
| 525 | def get_kernelversion(self) -> str: |
| 526 | return subprocess.run( |