fix error in web v2

This commit is contained in:
Chuck
2025-07-27 21:00:49 -05:00
parent 88078111b4
commit 0f6e3c9497
2 changed files with 9 additions and 4 deletions

View File

@@ -71,7 +71,7 @@ def check_dependencies(venv_path):
try:
subprocess.check_call([
str(venv_python), '-c', f'import {package}'
], capture_output=True)
], stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL)
except subprocess.CalledProcessError:
missing_packages.append(package)