From 6fad3cfe7650039531aeb5cdbb002cfcc0109716 Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Wed, 19 Mar 2025 15:31:34 +0200 Subject: [PATCH 1/2] Change gitignores --- .gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index c91fe52..c9f77ec 100644 --- a/.gitignore +++ b/.gitignore @@ -11,6 +11,6 @@ wheels/ # Project specific *.json -*.psm1 -*.xml -*.bak \ No newline at end of file +*.bak +src/out/* +originals/* \ No newline at end of file From 203435395871703610b452ab3a6860893568f049 Mon Sep 17 00:00:00 2001 From: Esa Kataja Date: Thu, 20 Mar 2025 09:24:32 +0200 Subject: [PATCH 2/2] Fix xml docstring --- src/xml_parser.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xml_parser.py b/src/xml_parser.py index 9d6c71c..eb9123b 100644 --- a/src/xml_parser.py +++ b/src/xml_parser.py @@ -31,6 +31,7 @@ def add_connection(root: ET.Element, name: str, attr_list: list[str], descriptio Args: root (ET.Element): The root element of the XML configuration. name (str): The name of the connection parameter. + attr_list (list[str]): List of attributes for the connection parameter. description (str, optional): The description of the connection parameter. Defaults to "Default description". Returns: