fix: hv.help() to work outside IPython/Jupyter#6793
Open
AR21SM wants to merge 1 commit intoholoviz:mainfrom
Open
fix: hv.help() to work outside IPython/Jupyter#6793AR21SM wants to merge 1 commit intoholoviz:mainfrom
AR21SM wants to merge 1 commit intoholoviz:mainfrom
Conversation
a5622c3 to
dd22828
Compare
Author
|
Hi @MarcSkovMadsen, I'm unable to edit the PR title from my end. Could you please change "Fix:" to "fix:" (lowercase) to pass the semantic PR title check? Thanks! |
Author
|
Thanks@hoxbro :) |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6793 +/- ##
=======================================
Coverage 89.21% 89.21%
=======================================
Files 334 334
Lines 72362 72364 +2
=======================================
+ Hits 64559 64561 +2
Misses 7803 7803 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
hoxbro
reviewed
Feb 5, 2026
Comment on lines
+747
to
+748
| from ..core.pprint import InfoPrinter | ||
| InfoPrinter.store = Store |
Member
There was a problem hiding this comment.
I'm not sure why you have chosen to put it here
Placing it here will only make it work, after you have called hv.extension.
We also need to check whether this store will work on Windows cmd.exe (if you haven't already checked it).
Author
There was a problem hiding this comment.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Description
Fixes #6775 -
hv.help()now provides visualization options (Style Options, Plot Options) when running in plain Python scripts, not just in Jupyter notebooks.Before
After
Checklist