(env_path: str | Path = ENV_PATH)
| 449 | |
| 450 | |
| 451 | def read_env_content(env_path: str | Path = ENV_PATH) -> str: |
| 452 | path = Path(env_path) |
| 453 | if not path.exists(): |
| 454 | return "" |
| 455 | return path.read_text(encoding="utf-8") |
| 456 | |
| 457 | |
| 458 | def validate_env_source(content: str) -> str: |
no outgoing calls
no test coverage detected