You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- from zeep.xsd import visitor
- from zeep.xsd.const import xsd_ns
-
-
- def patch_zeep():
- # see https://github.com/mvantellingen/python-zeep/issues/1185
- if visitor.tags.notation.localname != 'notation':
- visitor.tags.notation = xsd_ns('notation')
- visitor.SchemaVisitor.visitors[visitor.tags.notation] = visitor.SchemaVisitor.visit_notation
|