Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Re-categorize HoloViewsConverter docstring and add missing keywords in the correct special lists #1514

Merged
merged 6 commits into from
Feb 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion hvplot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,12 @@ def _get_doc_and_signature(

parameters = []
extra_kwargs = _hv.core.util.unique_iterator(
valid_opts + kind_opts + converter._axis_options + converter._op_options
valid_opts
+ kind_opts
+ converter._axis_config_options
+ converter._size_layout_options
+ converter._grid_legend_options
+ converter._resample_options
)

sig = signature or inspect.signature(method)
Expand Down
Loading
Loading