(self)
| 19 | self._loaded = threading.Event() |
| 20 | |
| 21 | def __repr__(self) -> str: |
| 22 | cls = type(self).__name__ |
| 23 | return f"<{cls}: key: {self.key}, obj: {self._obj}>" |
| 24 | |
| 25 | @property |
| 26 | def key(self): |
nothing calls this directly
no outgoing calls
no test coverage detected