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

fix: Added enterprise checks for case where object name is a string #36

Merged
merged 1 commit into from
Feb 28, 2024

Conversation

jnumainville
Copy link
Collaborator

@jnumainville jnumainville commented Feb 26, 2024

Fixes #35

Added checks for enterprise info in case where object name is a string

Ran the following code and verified the chart appeared:

from deephaven_ipywidgets import DeephavenWidget

connection_info = "connection"
session_mgr: SessionManager = SessionManager(connection_info)
session_mgr.password("username","password")
session = session_mgr.connect_to_new_worker(name=None, heap_size_gb=1.0)

session.run_script("""
from deephaven import empty_table
from deephaven.plot.figure import Figure
t = empty_table(100).update(["X=i", "Y=i*i"])
f = Figure().plot_xy(series_name="X vs Y", t=t, x="X", y="Y").show()
""")

display(DeephavenWidget("f", session=session))
Screenshot 2024-02-26 at 3 09 12 PM

@jnumainville jnumainville requested a review from mofojed February 26, 2024 21:10
@jnumainville jnumainville merged commit 08c621f into deephaven:main Feb 28, 2024
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Python client widgets in JupyterLab render as blank
2 participants