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

Method __getattr__

hvplot/interactive.py:897–901  ·  view source on GitHub ↗
(self, attr)

Source from the content-addressed store, hash-verified

895 return new._clone(transform(*args, **kwargs), dmap=dmap)
896
897 def __getattr__(self, attr):
898 if attr in self._kinds:
899 return partial(self, _kind=attr)
900 else:
901 raise AttributeError(f"'hvplot' object has no attribute '{attr}'")
902
903 def __dir__(self):
904 # This function is for autocompletion

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected