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.
2 parents 7310c32 + a6b123f commit ad6818cCopy full SHA for ad6818c
docs/source/using.md
@@ -18,7 +18,7 @@ screen](https://textual.textualize.io/guide/screens/#waiting-for-screens)
18
will look something like this:
19
20
```python
21
-from textual_fspicker import FileOpen
+from textual_fspicker import FileSave
22
23
...
24
@@ -30,7 +30,7 @@ class SomeApp(App):
30
@work
31
async def save_document(self) -> None:
32
"""Save the document."""
33
- if save_to := await self.push_screen_wait(FileOpen()):
+ if save_to := await self.push_screen_wait(FileSave()):
34
my_saving_function(save_to)
35
self.notify("Saved")
36
else:
0 commit comments