You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was trying out the new Tabs widget using Python 3.10.4 and found that I couldn't use Tabs together with Tab (needed Tab to assign CSS IDs). This issue can be reproduced by applying the following diff to textual 0.15.0:
Run python docs/examples/widgets/tabs.py, and I got:
Traceback (most recent call last):
File "/Users/lian/local/src/textual/main/docs/examples/widgets/tabs.py", line 2, in <module>
from textual.widgets import Footer, Label, Tabs, Tab
File "/Users/lian/.pyenv/versions/3.10.4/lib/python3.10/site-packages/textual/widgets/__init__.py", line 80, in __getattr__
module = import_module(widget_module_path, package="textual.widgets")
File "/Users/lian/.pyenv/versions/3.10.4/lib/python3.10/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
ModuleNotFoundError: No module named 'textual.widgets._tab'
The text was updated successfully, but these errors were encountered:
Was trying out the new
Tabs
widget using Python 3.10.4 and found that I couldn't useTabs
together withTab
(neededTab
to assign CSS IDs). This issue can be reproduced by applying the following diff to textual 0.15.0:Run
python docs/examples/widgets/tabs.py
, and I got:The text was updated successfully, but these errors were encountered: