From 19bc712ecf687dedb2e40226e00a744438d017e2 Mon Sep 17 00:00:00 2001 From: awsr <43862868+awsr@users.noreply.github.com> Date: Tue, 28 Apr 2026 01:35:25 -0700 Subject: [PATCH] Fix typing --- installer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.py b/installer.py index 0099392a5..ea5fd6ed1 100644 --- a/installer.py +++ b/installer.py @@ -244,7 +244,7 @@ def cleanup_broken_packages(): pass -def pip(arg: str, ignore: bool = False, quiet: bool = True, *, uv = True, constraints = True) -> tuple[subprocess.CompletedProcess, str]: +def pip(arg: str, ignore: bool = False, quiet: bool = True, *, uv = True, constraints = True) -> tuple[subprocess.CompletedProcess | None, str]: t_start = time.time() originalArg = arg arg = arg.replace('>=', '==').strip()