Files
TalkEdit/utils/validation.py

9 lines
244 B
Python
Raw Normal View History

2025-01-28 17:00:03 -05:00
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