Updated with code

This commit is contained in:
DataAnts-AI
2025-01-28 17:00:03 -05:00
parent 2b37a68c56
commit 3c44257d8a
8 changed files with 180 additions and 0 deletions

8
utils/validation.py Normal file
View File

@ -0,0 +1,8 @@
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