(option_group: str)
| 1206 | |
| 1207 | |
| 1208 | def _get_docstring_group_parameters(option_group: str) -> list: |
| 1209 | from numpydoc.docscrape import NumpyDocString |
| 1210 | from .converter import HoloViewsConverter |
| 1211 | |
| 1212 | with _patch_numpy_docstring(): |
| 1213 | cdoc = NumpyDocString(HoloViewsConverter.__doc__) |
| 1214 | return cdoc[option_group] |
| 1215 | |
| 1216 | |
| 1217 | def _find_stack_level() -> int: |
searching dependent graphs…