summaryrefslogtreecommitdiff
path: root/astroid/arguments.py
diff options
context:
space:
mode:
authorClaudiu Popa <pcmanticore@gmail.com>2018-05-27 14:27:29 +0800
committerClaudiu Popa <pcmanticore@gmail.com>2018-05-31 12:56:28 +0800
commit329deed20f8f8d65288ff7ae01b12e69c66f08c7 (patch)
treec9c0b0f95b4495a626e86e49ec624d87abe7023c /astroid/arguments.py
parentd172ace65755d9b1ad232791a461c1a811eb8698 (diff)
downloadastroid-git-329deed20f8f8d65288ff7ae01b12e69c66f08c7.tar.gz
Remove six from a couple of files
Diffstat (limited to 'astroid/arguments.py')
-rw-r--r--astroid/arguments.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/astroid/arguments.py b/astroid/arguments.py
index ba463981..508f4f85 100644
--- a/astroid/arguments.py
+++ b/astroid/arguments.py
@@ -5,8 +5,6 @@
# For details: https://github.com/PyCQA/astroid/blob/master/COPYING.LESSER
-import six
-
from astroid import bases
from astroid import context as contextmod
from astroid import exceptions
@@ -94,7 +92,7 @@ class CallSite(object):
if not isinstance(dict_key, nodes.Const):
values[name] = util.Uninferable
continue
- if not isinstance(dict_key.value, six.string_types):
+ if not isinstance(dict_key.value, str):
values[name] = util.Uninferable
continue
if dict_key.value in values: