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 0.8.4
calling hvplot.show() returns the threading.Thread or Server object (depending on whether threading is true or false)
The show method likely just needs to have a return added: https://github.com/holoviz/hvplot/blob/main/hvplot/utilities.py#L29
import hvplot import hvplot.pandas import pandas as pd import numpy as np ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000)) ts = ts.cumsum() plot = ts.hvplot() s = hvplot.show(plot, **{'threaded': True}) s.stop()
AttributeError Traceback (most recent call last) Cell In[12], line 1 ----> 1 s.stop()
AttributeError: 'NoneType' object has no attribute 'stop'
The text was updated successfully, but these errors were encountered:
Update show method to return the configured Server | threading.Thread
7e04313
Fix to holoviz#1115
No branches or pull requests
ALL software version info
hvplot 0.8.4
Description of expected behavior and the observed behavior
calling hvplot.show() returns the threading.Thread or Server object (depending on whether threading is true or false)
The show method likely just needs to have a return added: https://github.com/holoviz/hvplot/blob/main/hvplot/utilities.py#L29
Complete, minimal, self-contained example code that reproduces the issue
Stack traceback and/or browser JavaScript console output
In [12]: s.stop()
AttributeError Traceback (most recent call last)
Cell In[12], line 1
----> 1 s.stop()
AttributeError: 'NoneType' object has no attribute 'stop'
Screenshots or screencasts of the bug in action
The text was updated successfully, but these errors were encountered: