Skip to content

Commit

Permalink
Remove deprecation warning raised by own astroid code (#1190)
Browse files Browse the repository at this point in the history
Following comment here: #1072
  • Loading branch information
Pierre-Sassoulas committed Sep 25, 2021
1 parent 05445e2 commit 49b1411
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -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?
============================
Expand Down
3 changes: 1 addition & 2 deletions astroid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 49b1411

Please sign in to comment.