Pass older Python versions

This commit is contained in:
Dave Halter
2026-02-08 00:33:06 +01:00
parent d13000a74c
commit a0fa3ae95d

View File

@@ -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):
"""