nosec
This commit is contained in:
parent
9c9ab92a8d
commit
25d50c375b
1 changed files with 2 additions and 2 deletions
|
|
@ -2,7 +2,7 @@ from __future__ import annotations
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import shutil
|
import shutil
|
||||||
import subprocess
|
import subprocess # nosec
|
||||||
import sys
|
import sys
|
||||||
import tempfile
|
import tempfile
|
||||||
import time
|
import time
|
||||||
|
|
@ -145,7 +145,7 @@ def _release_install_lock(lock_path: Path) -> None:
|
||||||
try:
|
try:
|
||||||
lock_path.unlink(missing_ok=True)
|
lock_path.unlink(missing_ok=True)
|
||||||
except Exception:
|
except Exception:
|
||||||
pass
|
pass # nosec
|
||||||
|
|
||||||
|
|
||||||
def _install_chromium(browsers_path: Path, with_deps: bool = False) -> None:
|
def _install_chromium(browsers_path: Path, with_deps: bool = False) -> None:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue