Find the specified class name by looking for it in the module in which our this_class attribute was defined.
(self, string: str)
| 2355 | """ |
| 2356 | |
| 2357 | def _resolve_string(self, string: str) -> t.Any: |
| 2358 | """ |
| 2359 | Find the specified class name by looking for it in the module in which |
| 2360 | our this_class attribute was defined. |
| 2361 | """ |
| 2362 | modname = self.this_class.__module__ # type:ignore[attr-defined] |
| 2363 | return import_item(".".join([modname, string])) |
| 2364 | |
| 2365 | |
| 2366 | class ForwardDeclaredType(ForwardDeclaredMixin, Type[G, S]): |
nothing calls this directly
no test coverage detected