mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
remove weird kwarg syntax
This commit is contained in:
parent
a75adc7d1b
commit
3efb2f9f4e
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class XmlOutput(OutputFormat):
|
||||||
xml.end_tag()
|
xml.end_tag()
|
||||||
|
|
||||||
elif isinstance(value, VariantValue):
|
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.put_text(value.var_value)
|
||||||
xml.end_tag()
|
xml.end_tag()
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue