summaryrefslogtreecommitdiff
path: root/astroid/helpers.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2019-10-11 12:17:10 +0200
committerClaudiu Popa <pcmanticore@gmail.com>2019-10-11 12:19:51 +0200
commit73babe3d536ffc4da94e59c705eb6a8c3e5822ef (patch)
treef7bd58c91f6af50cf86caf296146bd239037e3ed /astroid/helpers.py
parent2982861826e5955e2e5597f1a3b125ddf9106fa4 (diff)
downloadastroid-git-73babe3d536ffc4da94e59c705eb6a8c3e5822ef.tar.gz
Fix lint warnings
Diffstat (limited to 'astroid/helpers.py')
-rw-r--r--astroid/helpers.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/astroid/helpers.py b/astroid/helpers.py
index 942b0a02..749a2389 100644
--- a/astroid/helpers.py
+++ b/astroid/helpers.py
@@ -240,6 +240,7 @@ def object_len(node, context=None):
or if multiple nodes are inferred
:rtype int: Integer length of node
"""
+ # pylint: disable=import-outside-toplevel; circular import
from astroid.objects import FrozenSet
inferred_node = safe_infer(node, context=context)