mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
docs fix
This commit is contained in:
@@ -5,7 +5,7 @@ from textual.widgets import Button, Welcome
|
||||
class WelcomeApp(App):
|
||||
def on_key(self) -> None:
|
||||
self.mount(Welcome())
|
||||
self.query_one(Button).label = "YES"
|
||||
self.query_one(Button).label = "YES!"
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
@@ -5,7 +5,7 @@ from textual.widgets import Button, Welcome
|
||||
class WelcomeApp(App):
|
||||
async def on_key(self) -> None:
|
||||
await self.mount(Welcome())
|
||||
self.query_one(Button).label = "YES"
|
||||
self.query_one(Button).label = "YES!"
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
||||
Reference in New Issue
Block a user