File size: 238 Bytes
bb85593
 
 
 
 
 
1
2
3
4
5
6
7
"""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