From cb00c120da0f53f8f271632e0cc1ba766a41a241 Mon Sep 17 00:00:00 2001 From: Ethan Alvizo Date: Fri, 24 May 2024 14:01:22 -0400 Subject: [PATCH] PR feedback --- plugins/ui/src/deephaven/ui/components/spectrum/basic.py | 8 -------- plugins/ui/src/deephaven/ui/types/types.py | 1 - 2 files changed, 9 deletions(-) diff --git a/plugins/ui/src/deephaven/ui/components/spectrum/basic.py b/plugins/ui/src/deephaven/ui/components/spectrum/basic.py index 19541ee05..ce0469087 100644 --- a/plugins/ui/src/deephaven/ui/components/spectrum/basic.py +++ b/plugins/ui/src/deephaven/ui/components/spectrum/basic.py @@ -11,14 +11,6 @@ def spectrum_element(name: str, /, *children: Any, **props: Any) -> BaseElement: return BaseElement(f"deephaven.ui.spectrum.{name}", *children, **props) -def contextual_help(*children, **props): - """ - Python implementation for the Adobe React Spectrum ContextualHelp component. - https://react-spectrum.adobe.com/react-spectrum/ContextualHelp.html - """ - return spectrum_element("ContextualHelp", *children, **props) - - def grid(*children, **props): """ Python implementation for the Adobe React Spectrum Grid component. diff --git a/plugins/ui/src/deephaven/ui/types/types.py b/plugins/ui/src/deephaven/ui/types/types.py index f21b0f470..26c765473 100644 --- a/plugins/ui/src/deephaven/ui/types/types.py +++ b/plugins/ui/src/deephaven/ui/types/types.py @@ -46,7 +46,6 @@ class RowDataValue(CellData): class SliderChange(TypedDict): """ Data for a range slider change event. - { start: float, end: float } """ start: float