Skip to content

Commit ea2e166

Browse files
committed
remove six reference
1 parent 5a06276 commit ea2e166

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/zeep/xsd/types/builtins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ class Base64Binary(BuiltinType):
372372

373373
@check_no_collection
374374
def xmlvalue(self, value):
375-
if isinstance(value, six.string_types):
375+
if isinstance(value, str):
376376
return value
377377
return base64.b64encode(value)
378378

0 commit comments

Comments
 (0)