We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3e03e04 + c0a2081 commit 97a5548Copy full SHA for 97a5548
1 file changed
src/onelogin/saml2/xml_utils.py
@@ -27,9 +27,9 @@ class OneLogin_Saml2_XML(object):
27
_unparse_etree = staticmethod(etree.tostring)
28
29
dump = staticmethod(etree.dump)
30
- make_root = etree.Element
31
- make_child = etree.SubElement
32
- cleanup_namespaces = etree.cleanup_namespaces
+ make_root = staticmethod(etree.Element)
+ make_child = staticmethod(etree.SubElement)
+ cleanup_namespaces = staticmethod(etree.cleanup_namespaces)
33
34
@staticmethod
35
def to_string(xml, **kwargs):
0 commit comments