Skip to content

Commit

Permalink
Change list to List
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrunyon committed Jun 27, 2024
1 parent 985e1c2 commit 3fa7dbd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/ui/src/deephaven/ui/types/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ class ContextMenuSubmenuItem(ContextMenuItemBase):
An item that contains a submenu for a context menu.
"""

actions: list["ResolvableContextMenuItem"]
actions: List["ResolvableContextMenuItem"]
"""
A list of actions that will form the submenu for the item.
"""
Expand All @@ -151,7 +151,7 @@ class ContextMenuSubmenuItem(ContextMenuItemBase):
ResolvableContextMenuItem = (
ContextMenuItem
| Callable[
[ContextMenuActionParams], ContextMenuItem | list[ContextMenuItem] | None
[ContextMenuActionParams], ContextMenuItem | List[ContextMenuItem] | None
]
)
"""
Expand Down

0 comments on commit 3fa7dbd

Please sign in to comment.