(self, other: Any)
| 113 | return _noop |
| 114 | |
| 115 | def __ior__(self, other: Any): |
| 116 | self.update(E=other) |
| 117 | if not self._location: |
| 118 | return self |
| 119 | return _noop |
| 120 | |
| 121 | def __iter__(self): |
| 122 | raise TypeError("Patch objects are write-only, you cannot iterate them.") |