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

Method __dir__

hvplot/plotting/core.py:106–111  ·  view source on GitHub ↗

List default attributes and custom defined plots.

(self)

Source from the content-addressed store, hash-verified

104 return HoloViewsConverter(self._data, x, y, kind=kind, **params)
105
106 def __dir__(self):
107 """
108 List default attributes and custom defined plots.
109 """
110 dirs = super().__dir__()
111 return sorted(list(dirs) + list(self._plots))
112
113 def __getattribute__(self, name):
114 """

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected