Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/devstack/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
from rich.console import Console
from dotenv import dotenv_values
except ImportError as e:
print(f"Error: Missing required dependency: {e}")
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")
sys.exit(1)

# Rich console for output
Expand Down
1 change: 0 additions & 1 deletion scripts/devstack/vault.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from __future__ import annotations

from pathlib import Path
from typing import Optional

from .utils import run_command, console, VAULT_CONFIG_DIR
Expand Down
Loading