From 3b20576f74430557afe72914f3c7b3f25c899355 Mon Sep 17 00:00:00 2001 From: AllePilli Date: Mon, 2 Sep 2024 10:55:51 +0200 Subject: [PATCH] [FIX] No visitor defined for '{http://www.w3.org/2001/XMLSchema}notation' reintroduce the "notation" tag because '{http://www.w3.org/2001/XMLSchema}notations' does not exist fixes #1185 --- src/zeep/xsd/visitor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zeep/xsd/visitor.py b/src/zeep/xsd/visitor.py index c7b1fb936..5aa40f537 100644 --- a/src/zeep/xsd/visitor.py +++ b/src/zeep/xsd/visitor.py @@ -37,7 +37,7 @@ class tags: attributeGroup = xsd_ns("attributeGroup") restriction = xsd_ns("restriction") extension = xsd_ns("extension") - notation = xsd_ns("notations") + notation = xsd_ns("notation") class SchemaVisitor: