diff options
Diffstat (limited to 'astroid/nodes.py')
-rw-r--r-- | astroid/nodes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/astroid/nodes.py b/astroid/nodes.py index 1aea53f2..6fb37652 100644 --- a/astroid/nodes.py +++ b/astroid/nodes.py @@ -40,9 +40,9 @@ from astroid.tree.node_classes import ( Arguments, AssignAttr, Assert, Assign, AssignName, AugAssign, Repr, BinOp, BoolOp, Break, Call, Compare, Comprehension, Const, Continue, Decorators, DelAttr, DelName, Delete, - Dict, Expr, Ellipsis, ExceptHandler, Exec, ExtSlice, For, + Dict, Empty, Expr, Ellipsis, ExceptHandler, Exec, ExtSlice, For, ImportFrom, Attribute, Global, If, IfExp, Import, Index, Keyword, - List, Name, NameConstant, Nonlocal, Pass, Print, Raise, Return, Set, Slice, + List, Name, NameConstant, Nonlocal, Pass, Parameter, Print, Raise, Return, Set, Slice, Starred, Subscript, TryExcept, TryFinally, Tuple, UnaryOp, While, With, WithItem, Yield, YieldFrom, AsyncFor, Await, AsyncWith, # Node not present in the builtin ast module. @@ -74,7 +74,7 @@ ALL_NODE_CLASSES = ( Lambda, List, ListComp, Name, NameConstant, Nonlocal, Module, - Pass, Print, + Parameter, Pass, Print, Raise, ReservedName, Return, Set, SetComp, Slice, Starred, Subscript, TryExcept, TryFinally, Tuple, |