remove unused return value from suds.xsd.sxbasic.Element.implany()

This commit is contained in:
Jurko Gospodnetić 2014-06-30 11:02:43 +02:00
parent 2fce798f01
commit 02efc08392
2 changed files with 1 additions and 2 deletions

View File

@ -497,7 +497,7 @@ class PartElement(SchemaElement):
self.form_qualified = False
def implany(self):
return self
pass
def optional(self):
return True

View File

@ -399,7 +399,6 @@ class Element(TypedContent):
"""
if self.type is None and self.ref is None and self.root.isempty():
self.type = self.anytype()
return self
def childtags(self):
return "any", "attribute", "complexType", "simpleType"