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 88e8054 commit 6d88bb3Copy full SHA for 6d88bb3
shiny/api-examples/input_file/app.py
@@ -21,7 +21,9 @@ def parsed_file():
21
file: list[FileInfo] | None = input.file1()
22
if file is None:
23
return pd.DataFrame()
24
- return pd.read_csv(file[0]["datapath"])
+ return pd.read_csv( # pyright: ignore[reportUnknownMemberType]
25
+ file[0]["datapath"]
26
+ )
27
28
@output
29
@render.table
shiny/examples/input_file/app.py
0 commit comments