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

Method __imul__

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

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

_operationFunction · 0.85
appendMethod · 0.45

Tested by

no test coverage detected