typing fixes

This commit is contained in:
Will McGugan
2024-05-17 17:40:58 +01:00
parent e0942cf499
commit 01f36c0d00
3 changed files with 5 additions and 1 deletions

View File

@@ -12,10 +12,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Added dynamic binding via `DOMNode.check_action` https://github.com/Textualize/textual/pull/4516
- Added `"focused"` action namespace so you can bind a key to an action on the focused widget https://github.com/Textualize/textual/pull/4516
- Added "focused" to allowed action namespaces https://github.com/Textualize/textual/pull/4516
### Changed
- Breaking change: Actions (as used in bindings) will no longer check the app if they are unhandled https://github.com/Textualize/textual/pull/4516
- Breaking change: Actions (as used in bindings) will no longer check the app if they are unhandled. This was undocumented anyway, and not that useful. https://github.com/Textualize/textual/pull/4516
## [0.60.1] - 2024-05-15

View File

@@ -1,3 +1,4 @@
from __future__ import annotations
from textual.app import App, ComposeResult
from textual.widgets import Footer

View File

@@ -1,3 +1,5 @@
from __future__ import annotations
from textual.app import App