Ensure that Tab is available from textual.widgets (#2045)

Fixes #2044
This commit is contained in:
Dave Pearson
2023-03-14 09:48:20 +00:00
committed by GitHub
parent b9c6520db4
commit 551d93c7c8
2 changed files with 4 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed
- Fixed how the namespace for messages is calculated to facilitate inheriting messages https://github.com/Textualize/textual/issues/1814
- `Tab` is now correctly made available from `textual.widgets`.
## [0.15.0] - 2023-03-13

View File

@@ -0,0 +1,3 @@
from ._tabs import Tab
__all__ = ["Tab"]