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 1dfd712 commit 3614b3fCopy full SHA for 3614b3f
tests/playwright/shiny/components/data_frame/edit/app.py
@@ -1,6 +1,7 @@
1
from __future__ import annotations
2
3
import pkgutil
4
+from typing import Any
5
6
# pyright: reportUnknownMemberType = false
7
# pyright: reportMissingTypeStubs = false
@@ -264,7 +265,7 @@ def df_styles_fn(data: pd.DataFrame) -> list[StyleInfo]:
264
265
# from shiny import reactive
266
267
@render_widget
- def country_detail_pop():
268
+ def country_detail_pop() -> Any:
269
import plotly.express as px
270
271
return px.line(
0 commit comments