(cls)
| 40 | |
| 41 | @classmethod |
| 42 | def get_instances(cls) -> Generator[T, None, None]: |
| 43 | for inst_ref in cls.__refs__[cls]: |
| 44 | inst = inst_ref() |
| 45 | if inst is not None: |
| 46 | yield inst |
| 47 | |
| 48 | |
| 49 | def walk(location: Union[str, Path]) -> Generator[Path, None, None]: |
no outgoing calls
no test coverage detected