diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d764f65..3e87e2d20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/textual/widgets/_tab.py b/src/textual/widgets/_tab.py new file mode 100644 index 000000000..2d5a4aa81 --- /dev/null +++ b/src/textual/widgets/_tab.py @@ -0,0 +1,3 @@ +from ._tabs import Tab + +__all__ = ["Tab"]