Fix string representation of PropertyNode.

This commit is contained in:
Sergio Martínez Portela 2023-01-04 00:36:20 +01:00
parent 8832cd0b3d
commit d67bae645b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class PropertyNode:
self.value = value
def __repr__(self):
return "{{{}: {}}".format(self.key, self.value)
return "{{{}: {}}}".format(self.key, self.value)
class ListGroupNode: