From 330e4db17c21d466d0b5246749d9459d9c79b7e2 Mon Sep 17 00:00:00 2001 From: Dave Pearson Date: Thu, 9 Feb 2023 10:27:48 +0000 Subject: [PATCH] Remove the import/export of TreeNode from the widgets pyi file We've moved TreeNode out of the general widgets import, requiring the user to import from widgets.tree. When I made that change I missed this. --- src/textual/widgets/__init__.pyi | 1 - 1 file changed, 1 deletion(-) diff --git a/src/textual/widgets/__init__.pyi b/src/textual/widgets/__init__.pyi index 82d25cd90..8fc4a8458 100644 --- a/src/textual/widgets/__init__.pyi +++ b/src/textual/widgets/__init__.pyi @@ -14,5 +14,4 @@ from ._static import Static as Static from ._input import Input as Input from ._text_log import TextLog as TextLog from ._tree import Tree as Tree -from ._tree_node import TreeNode as TreeNode from ._welcome import Welcome as Welcome