remove weird kwarg syntax

This commit is contained in:
jgcodes2020 2024-12-14 14:01:14 -05:00
parent a75adc7d1b
commit 3efb2f9f4e

View file

@ -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()