Specification for a lazily-loaded module attribute.
| 42 | |
| 43 | @dataclass(frozen=True) |
| 44 | class _LazyAttr: |
| 45 | """Specification for a lazily-loaded module attribute.""" |
| 46 | |
| 47 | module_path: str |
| 48 | attr_name: str |
| 49 | |
| 50 | |
| 51 | # Mapping from attribute name to lazy load specification |