We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942ba4b commit e82e765Copy full SHA for e82e765
scripts/devstack/utils.py
@@ -28,8 +28,8 @@
28
from rich.console import Console
29
from dotenv import dotenv_values
30
except ImportError as e:
31
- print(f"Error: Missing required dependency: {e}")
32
- print("Install with: uv pip install -r scripts/requirements.txt")
+ sys.stderr.write(f"Error: Missing required dependency: {e}\n")
+ sys.stderr.write("Install with: uv pip install -r scripts/requirements.txt\n")
33
sys.exit(1)
34
35
# Rich console for output
scripts/devstack/vault.py
@@ -20,7 +20,6 @@
20
21
from __future__ import annotations
22
23
-from pathlib import Path
24
from typing import Optional
25
26
from .utils import run_command, console, VAULT_CONFIG_DIR
0 commit comments