Skip to content

Commit 6bebea5

Browse files
fix: typo in error message (#2046)
1 parent 084e969 commit 6bebea5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shiny/render/_render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -531,7 +531,7 @@ async def transform(self, value: IntoDataFrame) -> dict[str, Jsonifiable]:
531531
except Exception as e:
532532
raise TypeError(
533533
"@render.table doesn't know how to render objects of type "
534-
f"'{str(type(value))}'. Return eagar data frames that can "
534+
f"'{str(type(value))}'. Return eager data frames that can "
535535
"be handled by `narwhals`."
536536
) from e
537537
value = nw_data.to_pandas()

0 commit comments

Comments
 (0)