(self, other: Mapping[Any, Any])
| 354 | return new_box |
| 355 | |
| 356 | def __ior__(self, other: Mapping[Any, Any]): # type: ignore[override] |
| 357 | if not isinstance(other, dict): |
| 358 | raise BoxTypeError("Box can only merge two boxes or a box and a dictionary.") |
| 359 | self.update(other) |
| 360 | return self |
| 361 | |
| 362 | def __sub__(self, other: Mapping[Any, Any]): |
| 363 | frozen = self._box_config["frozen_box"] |
nothing calls this directly
no test coverage detected