Updated with code
This commit is contained in:
8
utils/validation.py
Normal file
8
utils/validation.py
Normal 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
|
||||
Reference in New Issue
Block a user