Skip to content

Commit 1f8c9c6

Browse files
committed
lint
1 parent 3b4be82 commit 1f8c9c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

shiny/render/_data_frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# TODO-barret-render.data_frame; Docs
66
# TODO-barret-render.data_frame; Add examples!
7-
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Literal, cast
7+
from typing import TYPE_CHECKING, Any, Awaitable, Callable, Literal, Union, cast
88

99
from htmltools import Tag
1010

@@ -60,7 +60,7 @@
6060
@add_example()
6161
class data_frame(
6262
Renderer[
63-
None | IntoDataFrameT | DataGrid[IntoDataFrameT] | DataTable[IntoDataFrameT]
63+
Union[None, IntoDataFrameT, DataGrid[IntoDataFrameT], DataTable[IntoDataFrameT]]
6464
]
6565
):
6666
"""

0 commit comments

Comments
 (0)