diff options
Diffstat (limited to 'astroid/tree/treeabc.py')
| -rw-r--r-- | astroid/tree/treeabc.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/astroid/tree/treeabc.py b/astroid/tree/treeabc.py index c9fa2269..6ad96ba8 100644 --- a/astroid/tree/treeabc.py +++ b/astroid/tree/treeabc.py @@ -273,6 +273,10 @@ class With(Statement): """Class representing a With node""" +class WithItem(NodeNG): + """Class representing a WithItem node""" + + class AsyncWith(With): """Asynchronous `with` built with the `async` keyword.""" |
