summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshley Whetter <ashley@awhetter.co.uk>2021-08-16 09:59:40 -0700
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-08-16 19:08:31 +0200
commit02a4c266534fb473da07ea5b905726281d06cbde (patch)
tree88b5b021130a7430be6b3ae7a07ec45bb429e492
parentf5f1125e31b85f2c2002189c8ad95a691fd56c83 (diff)
downloadastroid-git-02a4c266534fb473da07ea5b905726281d06cbde.tar.gz
Fixed import of LookupMixIn from astroid.node_classes
-rw-r--r--ChangeLog2
-rw-r--r--astroid/node_classes.py1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 44e4cd43..f0cc1df3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,8 @@ What's New in astroid 2.7.1?
============================
Release date: TBA
+* Fixed LookupMixIn missing from ``astroid.node_classes``.
+
What's New in astroid 2.7.0?
diff --git a/astroid/node_classes.py b/astroid/node_classes.py
index a4b699b0..1b22634a 100644
--- a/astroid/node_classes.py
+++ b/astroid/node_classes.py
@@ -46,6 +46,7 @@ from astroid.nodes.node_classes import ( # pylint: disable=redefined-builtin (E
JoinedStr,
Keyword,
List,
+ LookupMixIn,
Match,
MatchAs,
MatchCase,