diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-06 07:05:50 -0700 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-06-06 07:05:57 -0700 |
commit | b51c3688fea7c0a97117e642764669dc9b3f7096 (patch) | |
tree | c858c07594b854593ae9e79c0fd05eae67dede57 /astroid/bases.py | |
parent | 34019c9e804fd646b94ad9598528f28c807f677c (diff) | |
download | astroid-git-b51c3688fea7c0a97117e642764669dc9b3f7096.tar.gz |
Fix lint
Diffstat (limited to 'astroid/bases.py')
-rw-r--r-- | astroid/bases.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/astroid/bases.py b/astroid/bases.py index 8ffeb1eb..1d1151a4 100644 --- a/astroid/bases.py +++ b/astroid/bases.py @@ -64,7 +64,7 @@ def _is_property(meth): continue if inferred.__class__.__name__ == 'ClassDef': for base_class in inferred.bases: - module, stmts = base_class.lookup(base_class.name) + module, _ = base_class.lookup(base_class.name) if module.name == BUILTINS and base_class.name == 'property': return True |