Check if an environment variable is either yaml or json.
Source code in neps/env.py
| def yaml_or_json(e: str) -> Literal["yaml", "json"]:
"""Check if an environment variable is either yaml or json."""
if e.lower() in ("yaml", "json"):
return e.lower() # type: ignore
raise ValueError(f"Expected 'yaml' or 'json', got '{e}'.")
|