diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 13:05:57 +0800 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 13:05:57 +0800 |
commit | b99210422d452d6c135d31bd532f11accb74130d (patch) | |
tree | 58759c137800161f814cd699c5c9a1fba6a0c46a /astroid/objects.py | |
parent | 68a9c60c89f74badd54aed1bb3038ebc7dfb4734 (diff) | |
download | astroid-git-b99210422d452d6c135d31bd532f11accb74130d.tar.gz |
Fix lint errors
Diffstat (limited to 'astroid/objects.py')
-rw-r--r-- | astroid/objects.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/astroid/objects.py b/astroid/objects.py index f7a738b9..1f5b4388 100644 --- a/astroid/objects.py +++ b/astroid/objects.py @@ -40,8 +40,8 @@ class FrozenSet(node_classes._BaseContainer): @decorators.cachedproperty def _proxied(self): # pylint: disable=method-hidden - builtins = MANAGER.astroid_cache[BUILTINS] - return builtins.getattr('frozenset')[0] + ast_builtins = MANAGER.astroid_cache[BUILTINS] + return ast_builtins.getattr('frozenset')[0] class Super(node_classes.NodeNG): @@ -104,8 +104,8 @@ class Super(node_classes.NodeNG): @decorators.cachedproperty def _proxied(self): - builtins = MANAGER.astroid_cache[BUILTINS] - return builtins.getattr('super')[0] + ast_builtins = MANAGER.astroid_cache[BUILTINS] + return ast_builtins.getattr('super')[0] def pytype(self): return '%s.super' % BUILTINS |