(self)
| 510 | return [] |
| 511 | |
| 512 | def _compute_unwrapped_hints(self): |
| 513 | return {field_name: unwrap_optional(hint)[0] for field_name, hint in self._type_hints.items()} |
| 514 | |
| 515 | def _build_missing_field_defaults(self): |
| 516 | if not self.type_resolver.compatible or not self._default_values_factory: |
no test coverage detected