Fix string representation of PropertyNode.
This commit is contained in:
parent
8832cd0b3d
commit
d67bae645b
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user