Files
TalkEdit/utils/validation.py
2025-01-28 17:00:03 -05:00

9 lines
244 B
Python

from pathlib import Path
def validate_environment(obs_path: Path):
"""Validate environment and prerequisites."""
errors = []
if not obs_path.exists():
errors.append(f"OBS directory not found: {obs_path}")
return errors