summaryrefslogtreecommitdiff
path: root/astroid/helpers.py
diff options
context:
space:
mode:
Diffstat (limited to 'astroid/helpers.py')
-rw-r--r--astroid/helpers.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/astroid/helpers.py b/astroid/helpers.py
index 2e633a07..d3522442 100644
--- a/astroid/helpers.py
+++ b/astroid/helpers.py
@@ -91,8 +91,6 @@ def object_isinstance(node, class_or_seq, context=None):
:rtype: bool
:raises AstroidTypeError: if the given ``classes_or_seq`` are not types
- :raises AstroidError: if the type of the given node cannot be inferred
- or its type's mro doesn't work
"""
if not isinstance(class_or_seq, (tuple, list)):
class_seq = (class_or_seq,)