Skip to content

Commit d6ba92b

Browse files
authored
Allow non over-verbose output (#172)
1 parent 32dc50b commit d6ba92b

File tree

1 file changed

+1
-1
lines changed
  • geos-trame/src/geos/trame/app/deck

1 file changed

+1
-1
lines changed

geos-trame/src/geos/trame/app/deck/tree.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ def to_xml( obj: BaseModel ) -> str:
118118
attribute_name_generator=text.camel_case,
119119
)
120120

121-
config = SerializerConfig( indent=" ", xml_declaration=False )
121+
config = SerializerConfig( indent=" ", xml_declaration=False, ignore_default_attributes=True )
122122
serializer = XmlSerializer( context=context, config=config )
123123

124124
return format_xml( serializer.render( obj ) )

0 commit comments

Comments
 (0)