(self, other: Mapping[Any, Any])
| 328 | return new_box |
| 329 | |
| 330 | def __iadd__(self, other: Mapping[Any, Any]): |
| 331 | if not isinstance(other, dict): |
| 332 | raise BoxTypeError("Box can only merge two boxes or a box and a dictionary.") |
| 333 | self.merge_update(other) |
| 334 | return self |
| 335 | |
| 336 | def __or__(self, other: Mapping[Any, Any]): |
| 337 | if not isinstance(other, dict): |
nothing calls this directly
no test coverage detected