Skip to content

Commit

Permalink
autodoc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanalvizo committed Oct 28, 2024
1 parent fcb7d6b commit 80c404e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions plugins/ui/src/deephaven/ui/components/panel.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
DimensionValue,
Overflow,
)
from ..elements import Element


def panel(
Expand All @@ -34,8 +35,7 @@ def panel(
padding_x: DimensionValue | None = None,
padding_y: DimensionValue | None = None,
key: str | None = None,
**props: Any,
):
) -> Element:
"""
A panel is a container that can be used to group elements.
Expand All @@ -59,6 +59,9 @@ def panel(
padding_y: The padding to apply to the top and bottom of the element.
key: A unique identifier used by React to render elements in a list.
Returns:
The rendered panel element.
"""

children, props = create_props(locals())
Expand Down

0 comments on commit 80c404e

Please sign in to comment.