(self)
| 1115 | self.orig = orig |
| 1116 | |
| 1117 | def __call__(self): |
| 1118 | from .plotting.core import hvPlot, hvPlotTabular |
| 1119 | from .converter import HoloViewsConverter |
| 1120 | |
| 1121 | for cls in [hvPlot, hvPlotTabular]: |
| 1122 | for _kind in HoloViewsConverter._kind_mapping: |
| 1123 | if hasattr(cls, _kind): |
| 1124 | signature = self.orig[(cls, _kind)][0] |
| 1125 | _patch_doc(cls, _kind, signature=signature) |
| 1126 | |
| 1127 | def reset(self): |
| 1128 | """Used for testing purposes mostly.""" |
nothing calls this directly
no test coverage detected