| 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}") | |
| 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}") | |