summaryrefslogtreecommitdiff
path: root/astroid/nodes.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/nodes.py')
-rw-r--r--astroid/nodes.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/astroid/nodes.py b/astroid/nodes.py
index 1c279ccf..3397294b 100644
--- a/astroid/nodes.py
+++ b/astroid/nodes.py
@@ -37,6 +37,7 @@ from astroid.node_classes import (
TryExcept, TryFinally, Tuple, UnaryOp, While, With, Yield, YieldFrom,
const_factory,
AsyncFor, Await, AsyncWith,
+ FormattedValue, JoinedStr,
# Backwards-compatibility aliases
Backquote, Discard, AssName, AssAttr, Getattr, CallFunc, From,
# Node not present in the builtin ast module.
@@ -75,4 +76,5 @@ ALL_NODE_CLASSES = (
UnaryOp,
While, With,
Yield, YieldFrom,
+ FormattedValue, JoinedStr,
)