MCPcopy Index your code
hub / github.com/plotly/dash / __isub__

Method __isub__

dash/_patch.py:97–101  ·  view source on GitHub ↗
(self, other: Any)

Source from the content-addressed store, hash-verified

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))

Callers

nothing calls this directly

Calls 2

_operationFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected