From 659a58e5e85dc4136c8531e453419a04e5590c28 Mon Sep 17 00:00:00 2001 From: Ethan Alvizo Date: Thu, 4 Jul 2024 23:51:23 -0400 Subject: [PATCH] change init --- plugins/ui/src/deephaven/ui/components/__init__.py | 1 - plugins/ui/src/deephaven/ui/components/basic.py | 8 -------- 2 files changed, 9 deletions(-) diff --git a/plugins/ui/src/deephaven/ui/components/__init__.py b/plugins/ui/src/deephaven/ui/components/__init__.py index aadbb5446..b11acc3c3 100644 --- a/plugins/ui/src/deephaven/ui/components/__init__.py +++ b/plugins/ui/src/deephaven/ui/components/__init__.py @@ -4,7 +4,6 @@ from .basic import ( component_element, icon_wrapper, - form, switch, tabs, tab_list, diff --git a/plugins/ui/src/deephaven/ui/components/basic.py b/plugins/ui/src/deephaven/ui/components/basic.py index ce008d6f8..3bbe5df80 100644 --- a/plugins/ui/src/deephaven/ui/components/basic.py +++ b/plugins/ui/src/deephaven/ui/components/basic.py @@ -23,14 +23,6 @@ def icon_wrapper(*children, **props): return component_element("Icon", *children, **props) -def form(*children, **props): - """ - Python implementation for the Adobe React Spectrum Form component. - https://react-spectrum.adobe.com/react-spectrum/Form.html - """ - return component_element("Form", *children, **props) - - def switch(*children, **props): """ Python implementation for the Adobe React Spectrum Switch component.