MCPcopy Create free account
hub / github.com/holoviz/hvplot / __mod__

Method __mod__

hvplot/interactive.py:644–646  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

642 return self._apply_operator(operator.lshift, other)
643
644 def __mod__(self, other):
645 other = other._transform if isinstance(other, Interactive) else other
646 return self._apply_operator(operator.mod, other)
647
648 def __mul__(self, other):
649 other = other._transform if isinstance(other, Interactive) else other

Callers

nothing calls this directly

Calls 1

_apply_operatorMethod · 0.95

Tested by

no test coverage detected