Skip to content

Commit e820a9d

Browse files
committed
ignore missing type stubs
1 parent 85d0a5a commit e820a9d

File tree

1 file changed

+3
-3
lines changed
  • tests/playwright/shiny/components/chat/shiny_output

1 file changed

+3
-3
lines changed

tests/playwright/shiny/components/chat/shiny_output/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import ipyleaflet as ipyl
1+
import ipyleaflet as ipyl # pyright: ignore[reportMissingTypeStubs]
22
import pandas as pd
3-
import plotly.express as px
3+
import plotly.express as px # pyright: ignore[reportMissingTypeStubs]
44
from shinywidgets import render_plotly, render_widget
55

66
from shiny import reactive, render
@@ -57,7 +57,7 @@ async def _():
5757
@render_plotly
5858
def plot():
5959
dat = pd.DataFrame({"x": [1, 2, 3], "y": [4, 5, 6]})
60-
return px.scatter(dat, x="x", y="y")
60+
return px.scatter(dat, x="x", y="y") # pyright: ignore[reportUnknownMemberType]
6161

6262

6363
@reactive.effect

0 commit comments

Comments
 (0)