From 0d1015f00b41601d4f483c88fc9ffb0d98f8f807 Mon Sep 17 00:00:00 2001 From: Lucas Wiman Date: Mon, 30 Jan 2017 07:41:19 -0800 Subject: [PATCH] Update type of six.string_types to Union[str, unicode] (#882) --- third_party/2/six/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/2/six/__init__.pyi b/third_party/2/six/__init__.pyi index 302c45886..c4c4723f8 100644 --- a/third_party/2/six/__init__.pyi +++ b/third_party/2/six/__init__.pyi @@ -27,7 +27,7 @@ PY2 = True PY3 = False PY34 = False -string_types = basestring, +string_types = (str, unicode) integer_types = (int, long) class_types = (type, types.ClassType) text_type = unicode