Axiovora-X / dotenv.py
ZAIDX11's picture
Add files using upload-large-folder tool
bb85593 verified
"""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