From a0fa3ae95d1ac15aaec1da5eba02a80461dffcc2 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Sun, 8 Feb 2026 00:33:06 +0100 Subject: [PATCH] Pass older Python versions --- parso/python/tree.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parso/python/tree.py b/parso/python/tree.py index 9363522..7c500ca 100644 --- a/parso/python/tree.py +++ b/parso/python/tree.py @@ -68,7 +68,7 @@ _IMPORTS = set(['import_name', 'import_from']) class DocstringMixin: __slots__ = () type: str - children: list[Any] + children: "list[Any]" parent: Any def get_doc_node(self): @@ -101,7 +101,7 @@ class PythonMixin: Some Python specific utilities. """ __slots__ = () - children: list[Any] + children: "list[Any]" def get_name_of_position(self, position): """