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

Method __le__

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

Source from the content-addressed store, hash-verified

630 return self._apply_operator(operator.gt, other)
631
632 def __le__(self, other):
633 other = other._transform if isinstance(other, Interactive) else other
634 return self._apply_operator(operator.le, other)
635
636 def __lt__(self, other):
637 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