Return True if the given attribute is fully initialized. i.e. has an impl.
(self, key: str)
| 311 | return default |
| 312 | |
| 313 | def _attr_has_impl(self, key: str) -> bool: |
| 314 | """Return True if the given attribute is fully initialized. |
| 315 | |
| 316 | i.e. has an impl. |
| 317 | """ |
| 318 | |
| 319 | return key in self and self[key].impl is not None |
| 320 | |
| 321 | def _subclass_manager(self, cls: Type[_T]) -> ClassManager[_T]: |
| 322 | """Create a new ClassManager for a subclass of this ClassManager's |
no outgoing calls
no test coverage detected