(self, other: Any)
| 107 | return _noop |
| 108 | |
| 109 | def __itruediv__(self, other: Any): |
| 110 | self._operations.append(_operation("Div", self._location, value=other)) |
| 111 | if not self._location: |
| 112 | return self |
| 113 | return _noop |
| 114 | |
| 115 | def __ior__(self, other: Any): |
| 116 | self.update(E=other) |
nothing calls this directly
no test coverage detected