summaryrefslogtreecommitdiff
path: root/astroid/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/helpers.py')
-rw-r--r--astroid/helpers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/astroid/helpers.py b/astroid/helpers.py
index 437b39de..a0ba6c18 100644
--- a/astroid/helpers.py
+++ b/astroid/helpers.py
@@ -26,7 +26,6 @@ from astroid import context as contextmod
from astroid import exceptions
from astroid.interpreter import runtimeabc
from astroid import manager
-from astroid import raw_building
from astroid.tree import treeabc
from astroid import util
@@ -35,6 +34,8 @@ BUILTINS = six.moves.builtins.__name__
def _build_proxy_class(cls_name, builtins):
+ # TODO(cpopa): remove this when merging with modular-locals.
+ from astroid import raw_building
proxy = raw_building.build_class(cls_name)
proxy.parent = builtins
return proxy