From 3efb2f9f4ec8f949efee071248d49c25b50582e0 Mon Sep 17 00:00:00 2001 From: jgcodes2020 Date: Sat, 14 Dec 2024 14:01:14 -0500 Subject: [PATCH] remove weird kwarg syntax --- blueprintcompiler/outputs/xml/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprintcompiler/outputs/xml/__init__.py b/blueprintcompiler/outputs/xml/__init__.py index 4faeaff..4e4cc1c 100644 --- a/blueprintcompiler/outputs/xml/__init__.py +++ b/blueprintcompiler/outputs/xml/__init__.py @@ -161,7 +161,7 @@ class XmlOutput(OutputFormat): xml.end_tag() elif isinstance(value, VariantValue): - xml.start_tag("property", **props, **{"type": value.var_type}) + xml.start_tag("property", **props, type=value.var_type) xml.put_text(value.var_value) xml.end_tag()