diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2017-10-12 12:47:12 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2017-10-12 12:47:12 +0200 |
commit | 1602d9989ce74773bd5d7f2d0d76861eb210d227 (patch) | |
tree | daab0c75a24ea077c286b2a465eaab31ee131b36 /astroid/util.py | |
parent | c127ef121872f92013de351d1670da64337905ea (diff) | |
download | astroid-git-1602d9989ce74773bd5d7f2d0d76861eb210d227.tar.gz |
Fix the remaining lint errors
Diffstat (limited to 'astroid/util.py')
-rw-r--r-- | astroid/util.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/astroid/util.py b/astroid/util.py index 6fd52d31..cce30056 100644 --- a/astroid/util.py +++ b/astroid/util.py @@ -80,6 +80,7 @@ class BadUnaryOperationMessage(BadOperationMessage): return helpers.object_type def _object_type(self, obj): + # pylint: disable=not-callable; can't infer lazy_import objtype = self._object_type_helper(obj) if objtype is Uninferable: return None |