(self)
| 2714 | |
| 2715 | @HasMemoized.memoized_attribute |
| 2716 | def _with_polymorphic_mappers(self) -> Sequence[Mapper[Any]]: |
| 2717 | self._check_configure() |
| 2718 | |
| 2719 | if not self.with_polymorphic: |
| 2720 | return [] |
| 2721 | return self._mappers_from_spec(*self.with_polymorphic) |
| 2722 | |
| 2723 | @HasMemoized.memoized_attribute |
| 2724 | def _post_inspect(self): |
nothing calls this directly
no test coverage detected