(self, obj: t.Any)
| 2328 | return result |
| 2329 | |
| 2330 | def instance_init(self, obj: t.Any) -> None: |
| 2331 | # we can't do this in subclass_init because that |
| 2332 | # might be called before all imports are done. |
| 2333 | self._resolve_classes() |
| 2334 | |
| 2335 | def _resolve_classes(self) -> None: |
| 2336 | if isinstance(self.klass, str): |
nothing calls this directly
no test coverage detected