| """Minimal dotenv shim for environments where python-dotenv isn't installed. | |
| This provides load_dotenv() as a noop so code can run without the package. | |
| """ | |
| def load_dotenv(path=None): | |
| # noop for tests/local runs | |
| return True | |
| """Minimal dotenv shim for environments where python-dotenv isn't installed. | |
| This provides load_dotenv() as a noop so code can run without the package. | |
| """ | |
| def load_dotenv(path=None): | |
| # noop for tests/local runs | |
| return True | |