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

Method __gt__

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

Source from the content-addressed store, hash-verified

626 return self._apply_operator(operator.ge, other)
627
628 def __gt__(self, other):
629 other = other._transform if isinstance(other, Interactive) else other
630 return self._apply_operator(operator.gt, other)
631
632 def __le__(self, other):
633 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