PackageInstaller._install_task: fix type annotation

This commit is contained in:
Gregory Becker 2024-09-05 14:16:23 -07:00
parent a3344c5672
commit 04f8ebd1eb
No known key found for this signature in database
GPG Key ID: 2362541F6D14ED84

View File

@ -1838,7 +1838,7 @@ def _add_tasks(self, request: BuildRequest, all_deps):
fail_fast = bool(request.install_args.get("fail_fast"))
self.fail_fast = self.fail_fast or fail_fast
def _install_task(self, task: Task, install_status: InstallStatus) -> None:
def _install_task(self, task: Task, install_status: InstallStatus) -> ExecuteResult:
"""
Perform the installation of the requested spec and/or dependency
represented by the task.