Fix: Type annotation added to _create_tab_widget

This commit is contained in:
thenightmail 2025-06-11 08:26:14 -04:00
parent 80962259fc
commit aa9ade165e
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ class TreeTabbedBrowser(TabbedBrowser):
self._tree_tab_sibling_rel_idx = 0
self._tree_tab_toplevel_rel_idx = 0
def _create_tab_widget(self):
def _create_tab_widget(self) -> TreeTabWidget:
"""Return the tab widget that can display a tree structure."""
return TreeTabWidget(self._win_id, parent=self)