We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
hvplot.util.with_hv_extension
However looking at the source code this issue should still be present in MASTER.
Functions wrapped with the hvplot.util.with_hv_extension decorator have their docstrings hidden by the wrapper docstring.
wrapper
functools.wraps can fix this.
functools.wraps
Example
>>> import hvplot >>> help(hvplot.scatter_matrix)
Result:
Help on function wrapper in module hvplot.util: wrapper(*args, **kwargs)
This is the docstring from the wrapper function inside hvplot.util.with_hv_extension.
The text was updated successfully, but these errors were encountered:
with_hv_extension
Successfully merging a pull request may close this issue.
ALL software version info
However looking at the source code this issue should still be present in MASTER.
Description of expected behavior and the observed behavior
Functions wrapped with the
hvplot.util.with_hv_extension
decorator have their docstrings hidden by thewrapper
docstring.functools.wraps
can fix this.Complete, minimal, self-contained example code that reproduces the issue
Example
Result:
This is the docstring from the
wrapper
function insidehvplot.util.with_hv_extension
.The text was updated successfully, but these errors were encountered: