Merge a dict or keyword arguments with another dictionary
(self, E: Any = None, **F)
| 157 | self._operations.append(_operation("Remove", self._location, value=item)) |
| 158 | |
| 159 | def update(self, E: Any = None, **F) -> None: |
| 160 | """Merge a dict or keyword arguments with another dictionary""" |
| 161 | value = E or {} |
| 162 | value.update(F) |
| 163 | self._operations.append(_operation("Merge", self._location, value=value)) |
| 164 | |
| 165 | # pylint: disable=no-self-use |
| 166 | def sort(self): |