(self)
| 1692 | return self._registry_get('action', action, action) |
| 1693 | |
| 1694 | def _get_handler(self): |
| 1695 | # determine function from conflict handler string |
| 1696 | handler_func_name = '_handle_conflict_%s' % self.conflict_handler |
| 1697 | try: |
| 1698 | return getattr(self, handler_func_name) |
| 1699 | except AttributeError: |
| 1700 | msg = f'invalid conflict_resolution value: {self.conflict_handler!r}' |
| 1701 | raise ValueError(msg) |
| 1702 | |
| 1703 | def _check_conflict(self, action): |
| 1704 |
no test coverage detected