diff --git a/ChangeLog b/ChangeLog index 96997f0ea2..0c6d73c76e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -26,6 +26,7 @@ Release date: TBA Closes PyCQA/pylint#5048 +* Astroid does not trigger it's own deprecation warning anymore. What's New in astroid 2.8.0? ============================ diff --git a/astroid/__init__.py b/astroid/__init__.py index 8f7b501d8f..6b2b5377ab 100644 --- a/astroid/__init__.py +++ b/astroid/__init__.py @@ -48,11 +48,10 @@ # the version before the dependencies are installed (in particular 'wrapt' # that is imported in astroid.inference) from astroid.__pkginfo__ import __version__, version +from astroid.nodes import node_classes, scoped_nodes # isort: on -from astroid import node_classes # Deprecated, to remove later -from astroid import scoped_nodes # Deprecated, to remove later from astroid import inference, raw_building from astroid.astroid_manager import MANAGER from astroid.bases import BaseInstance, BoundMethod, Instance, UnboundMethod