Skip to content

Commit e450b5e

Browse files
committed
chore: add types
1 parent dcf44cd commit e450b5e

File tree

1 file changed

+2
-2
lines changed
  • tests/playwright/shiny/components/nav/navset_bar_options

1 file changed

+2
-2
lines changed

tests/playwright/shiny/components/nav/navset_bar_options/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from shiny import App, ui
1+
from shiny import App, Inputs, Outputs, Session, ui
22

33
app_ui = ui.page_navbar(
44
ui.nav_panel(
@@ -16,7 +16,7 @@
1616
)
1717

1818

19-
def server(input, output, session):
19+
def server(input: Inputs, output: Outputs, session: Session):
2020
pass
2121

2222

0 commit comments

Comments
 (0)