We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62c8933 commit d3bf198Copy full SHA for d3bf198
shiny/render/_data_frame_utils/_tbl_data.py
@@ -202,7 +202,7 @@ def serialize_dtype(col: nw.Series) -> FrameDtype:
202
type_ = "datetime"
203
elif isinstance(dtype, nw.Duration):
204
type_ = "duration"
205
- elif isinstance(dtype, nw.Time):
+ elif hasattr(nw, "Time") and isinstance(dtype, nw.Time):
206
type_ = "time"
207
elif isinstance(dtype, nw.Object):
208
type_ = "object"
0 commit comments