From aa0024a9cb0e4af3245fd7c2759d3ed7a2cc10ca Mon Sep 17 00:00:00 2001 From: s-heppner Date: Tue, 10 Oct 2023 14:08:33 +0200 Subject: [PATCH] adapter.xml_deserialization: Update docstring of _element_pretty_identifier --- basyx/aas/adapter/xml/xml_deserialization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basyx/aas/adapter/xml/xml_deserialization.py b/basyx/aas/adapter/xml/xml_deserialization.py index 738eeb7b1..d8cd7b2dc 100644 --- a/basyx/aas/adapter/xml/xml_deserialization.py +++ b/basyx/aas/adapter/xml/xml_deserialization.py @@ -98,7 +98,7 @@ def _element_pretty_identifier(element: etree.Element) -> str: If the prefix is known, the namespace in the element tag is replaced by the prefix. If additionally also the sourceline is known, is is added as a suffix to name. - For example, instead of "{http://admin-shell.io/aas/3/0}assetAdministrationShell" this function would return + For example, instead of "{https://admin-shell.io/aas/3/0}assetAdministrationShell" this function would return "aas:assetAdministrationShell on line $line", if both, prefix and sourceline, are known. :param element: The xml element.