(self)
| 2674 | |
| 2675 | @HasMemoized.memoized_attribute |
| 2676 | def _with_polymorphic_mappers(self) -> Sequence[Mapper[Any]]: |
| 2677 | self._check_configure() |
| 2678 | |
| 2679 | if not self.with_polymorphic: |
| 2680 | return [] |
| 2681 | return self._mappers_from_spec(*self.with_polymorphic) |
| 2682 | |
| 2683 | @HasMemoized.memoized_attribute |
| 2684 | def _post_inspect(self): |
nothing calls this directly
no test coverage detected