summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Shadchin <alexandr.shadchin@gmail.com>2022-01-04 02:02:34 +0300
committerGitHub <noreply@github.com>2022-01-04 00:02:34 +0100
commitc44b1de2d5ab17898534ec44db8ee9090eb26f7f (patch)
treeee870bce616d3ee26c55bf9c7d14fa97c49cddd1
parentfe51be5cd051cea8699f30b338e85f7763cd2ab7 (diff)
downloadastroid-git-c44b1de2d5ab17898534ec44db8ee9090eb26f7f.tar.gz
Fix import astroid.scoped_nodes (#1325)
-rw-r--r--astroid/nodes/scoped_nodes/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/astroid/nodes/scoped_nodes/__init__.py b/astroid/nodes/scoped_nodes/__init__.py
index 261f92f8..9c0463d0 100644
--- a/astroid/nodes/scoped_nodes/__init__.py
+++ b/astroid/nodes/scoped_nodes/__init__.py
@@ -18,6 +18,7 @@ from astroid.nodes.scoped_nodes.scoped_nodes import (
LocalsDictNodeNG,
Module,
SetComp,
+ _is_metaclass,
builtin_lookup,
function_to_method,
get_wrapping_class,
@@ -38,4 +39,5 @@ __all__ = (
"builtin_lookup",
"function_to_method",
"get_wrapping_class",
+ "_is_metaclass",
)