Remove some unused imports

This commit is contained in:
Andrej730
2026-02-05 12:20:06 +05:00
parent 34ffaea2c9
commit ff3933a117
260 changed files with 113 additions and 687 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ ZIP_TEMPLATE = f"{{package_name}}-v{VERSION}-{SHA}-win64.zip"
def run(command: list[str]) -> None:
print("Running:", command)
subprocess.check_call(command) # nosec B603
subprocess.check_call(command)
def set_env(var_name: str, value: str) -> tuple[str, str | None]: