Skip to content

Commit 03839f0

Browse files
committed
Fixing types
1 parent e6b8260 commit 03839f0

File tree

1 file changed

+2
-2
lines changed
  • tests/playwright/shiny/bugs/2061-css-js-inclusion

1 file changed

+2
-2
lines changed

tests/playwright/shiny/bugs/2061-css-js-inclusion/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
# Define the UI
44
app_ui = ui.page_fluid(
@@ -14,7 +14,7 @@
1414

1515

1616
# Define the server
17-
def server(input, output, session):
17+
def server(input: Inputs, output: Outputs, session: Session):
1818
pass
1919

2020

0 commit comments

Comments
 (0)