From bd90dac0b1230dc42b885c93066ebbdd4d055002 Mon Sep 17 00:00:00 2001 From: manske Date: Tue, 29 Jul 2025 15:57:58 -0700 Subject: [PATCH] remove none type from RegistryTableValue --- runtime/mount/python_lib/lplots/widgets/registry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/mount/python_lib/lplots/widgets/registry.py b/runtime/mount/python_lib/lplots/widgets/registry.py index 8c9d3152..bb10e6d6 100644 --- a/runtime/mount/python_lib/lplots/widgets/registry.py +++ b/runtime/mount/python_lib/lplots/widgets/registry.py @@ -86,8 +86,8 @@ class RegistryTableState(_emit.WidgetState[registry_table_type, str]): class RegistryTableValue(TypedDict): - table: Table | None - selected_rows: list[Record] | None + table: Table + selected_rows: list[Record] @dataclass(frozen=True, kw_only=True)