File size: 271 Bytes
3b452a0
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from importlib import import_module

__all__ = ["IDPIExfilEnv"]


def __getattr__(name: str):
    if name == "IDPIExfilEnv":
        return import_module(".environment", __name__).IDPIExfilEnv
    raise AttributeError(f"module {__name__!r} has no attribute {name!r}")