Skip to content

Commit 3614b3f

Browse files
committed
see if this fixes pyright issues
1 parent 1dfd712 commit 3614b3f

File tree

1 file changed

+2
-1
lines changed
  • tests/playwright/shiny/components/data_frame/edit

1 file changed

+2
-1
lines changed

tests/playwright/shiny/components/data_frame/edit/app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

33
import pkgutil
4+
from typing import Any
45

56
# pyright: reportUnknownMemberType = false
67
# pyright: reportMissingTypeStubs = false
@@ -264,7 +265,7 @@ def df_styles_fn(data: pd.DataFrame) -> list[StyleInfo]:
264265
# from shiny import reactive
265266

266267
@render_widget
267-
def country_detail_pop():
268+
def country_detail_pop() -> Any:
268269
import plotly.express as px
269270

270271
return px.line(

0 commit comments

Comments
 (0)