From cc7ee0817e32ebafa4b21c525359b583b50157d0 Mon Sep 17 00:00:00 2001 From: Chris Oloff Date: Fri, 19 Dec 2025 15:39:23 +0200 Subject: [PATCH] wording --- sample.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sample.py b/sample.py index 4169a61..8ec5c8b 100644 --- a/sample.py +++ b/sample.py @@ -15,7 +15,7 @@ w42_state = panel.rx(None) attach_w42_state(rx_var=w42_state, system_id=SYSTEM_ID, token=API_TOKEN) def state_to_text(state: dict[str, Any]) -> str: - return f"W42 State:\n\n```\n{json.dumps(state, indent=2)}\n```\n\nReplace this with some awesome visuals" + return f"Watt42 State:\n\n```\n{json.dumps(state, indent=2)}\n```\n\nReplace this with some awesome visuals" state_as_text = panel.bind(state_to_text, w42_state) @@ -31,7 +31,7 @@ here](https://source.c3.uber5.com/watt42-public/watt42_viewlib/src/branch/main/R """ _ = panel.template.FastListTemplate( - title="Sample W42 App", + title="Sample Watt42 App", sidebar=[panel.pane.Markdown(sidebar_content, sizing_mode='stretch_width')], main=[ state_pane,