Return true if the given mapper shares a common inherited parent as this mapper.
(self, other: Mapper[Any])
| 3317 | return False |
| 3318 | |
| 3319 | def common_parent(self, other: Mapper[Any]) -> bool: |
| 3320 | """Return true if the given mapper shares a |
| 3321 | common inherited parent as this mapper.""" |
| 3322 | |
| 3323 | return self.base_mapper is other.base_mapper |
| 3324 | |
| 3325 | def is_sibling(self, other: Mapper[Any]) -> bool: |
| 3326 | """return true if the other mapper is an inheriting sibling to this |
no outgoing calls
no test coverage detected