From 02c6fdf4e05992bd383fdbf47d5348bdda2a8669 Mon Sep 17 00:00:00 2001 From: John Arban Lewis Date: Tue, 12 Nov 2024 17:36:53 -0500 Subject: [PATCH] attempt intializing glue as in hubble story (doesn't work) --- src/tempods/solara_app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tempods/solara_app.py b/src/tempods/solara_app.py index 37355e4..19eddfe 100644 --- a/src/tempods/solara_app.py +++ b/src/tempods/solara_app.py @@ -51,7 +51,8 @@ def Page(): print('Rendering Page') def _setup_glue() -> gj.JupyterApplication: - return gj.jglue() + gjapp = gj.jglue() + return gj.JupyterApplication(gjapp.data_collection, gjapp.session) glue_app = solara.use_memo(_setup_glue, [])