nosec
Some checks failed
CI / test (push) Has been cancelled
Lint / test (push) Successful in 27s
Trivy / test (push) Has been cancelled

This commit is contained in:
Miguel Jacq 2026-01-02 10:55:08 +11:00
parent 9c9ab92a8d
commit 25d50c375b
Signed by: mig5
GPG key ID: 59B3F0C24135C6A9

View file

@ -2,7 +2,7 @@ from __future__ import annotations
import os
import shutil
import subprocess
import subprocess # nosec
import sys
import tempfile
import time
@ -145,7 +145,7 @@ def _release_install_lock(lock_path: Path) -> None:
try:
lock_path.unlink(missing_ok=True)
except Exception:
pass
pass # nosec
def _install_chromium(browsers_path: Path, with_deps: bool = False) -> None: