(self, other: Any)
| 95 | return _noop |
| 96 | |
| 97 | def __isub__(self, other: Any): |
| 98 | self._operations.append(_operation("Sub", self._location, value=other)) |
| 99 | if not self._location: |
| 100 | return self |
| 101 | return _noop |
| 102 | |
| 103 | def __imul__(self, other: Any) -> "Patch": |
| 104 | self._operations.append(_operation("Mul", self._location, value=other)) |
nothing calls this directly
no test coverage detected