Handle any merge conflicts by calling their success() function with a merged value :param conflicts: Map of conflict id to conflict structure :return: True if all conflicts were successfully merged
(self, conflicts: Dict[str, MergeConflict])
| 232 | |
| 233 | @abc.abstractmethod |
| 234 | def handle(self, conflicts: Dict[str, MergeConflict]) -> bool: |
| 235 | """ |
| 236 | Handle any merge conflicts by calling their success() function with a merged value |
| 237 | |
| 238 | :param conflicts: Map of conflict id to conflict structure |
| 239 | :return: True if all conflicts were successfully merged |
| 240 | """ |
| 241 | raise NotImplementedError("Not implemented") |
| 242 | |
| 243 | |
| 244 | class ConflictSplitter: |