(self, other: Any)
| 101 | return _noop |
| 102 | |
| 103 | def __imul__(self, other: Any) -> "Patch": |
| 104 | self._operations.append(_operation("Mul", self._location, value=other)) |
| 105 | if not self._location: |
| 106 | return self |
| 107 | return _noop |
| 108 | |
| 109 | def __itruediv__(self, other: Any): |
| 110 | self._operations.append(_operation("Div", self._location, value=other)) |
nothing calls this directly
no test coverage detected