summaryrefslogtreecommitdiff
path: root/astroid/nodes
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-30 17:16:00 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2023-04-30 22:27:15 +0200
commit20af688144096e2079623afdf33ed0156779a846 (patch)
treeaef244cb72aed172faec15e465501d08a5396290 /astroid/nodes
parente970218f6f591264f2b0512f46609c78e257e0b7 (diff)
downloadastroid-git-20af688144096e2079623afdf33ed0156779a846.tar.gz
Fix some typing issues
Diffstat (limited to 'astroid/nodes')
-rw-r--r--astroid/nodes/node_classes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/nodes/node_classes.py b/astroid/nodes/node_classes.py
index 2c28c7bc..db0c50d6 100644
--- a/astroid/nodes/node_classes.py
+++ b/astroid/nodes/node_classes.py
@@ -286,7 +286,7 @@ class BaseContainer(_base_nodes.ParentAssignNode, Instance, metaclass=abc.ABCMet
:param end_col_offset: The end column this node appears on in the
source code. Note: This is after the last symbol.
"""
- self.elts: list[NodeNG] = []
+ self.elts: list[SuccessfulInferenceResult] = []
"""The elements in the node."""
super().__init__(