diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-27 14:27:29 +0800 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2018-05-31 12:56:28 +0800 |
commit | 329deed20f8f8d65288ff7ae01b12e69c66f08c7 (patch) | |
tree | c9c0b0f95b4495a626e86e49ec624d87abe7023c /astroid/objects.py | |
parent | d172ace65755d9b1ad232791a461c1a811eb8698 (diff) | |
download | astroid-git-329deed20f8f8d65288ff7ae01b12e69c66f08c7.tar.gz |
Remove six from a couple of files
Diffstat (limited to 'astroid/objects.py')
-rw-r--r-- | astroid/objects.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/astroid/objects.py b/astroid/objects.py index 07ebbc8f..0a83fc26 100644 --- a/astroid/objects.py +++ b/astroid/objects.py @@ -14,7 +14,7 @@ leads to an inferred FrozenSet: Call(func=Name('frozenset'), args=Tuple(...)) """ -import six +import builtins from astroid import bases from astroid import decorators @@ -25,7 +25,7 @@ from astroid import scoped_nodes from astroid import util -BUILTINS = six.moves.builtins.__name__ +BUILTINS = builtins.__name__ objectmodel = util.lazy_import('interpreter.objectmodel') |