(self)
| 462 | self.pipx_metadata.write() |
| 463 | |
| 464 | def get_python_version(self) -> str: |
| 465 | return run_subprocess([str(self.python_path), "--version"]).stdout.strip() |
| 466 | |
| 467 | def list_installed_packages(self, not_required: bool = False) -> set[str]: |
| 468 | return self.backend.list_installed( |
no test coverage detected