1
0

Merge pull request #9086 from longxiangqiao/master

chore: fix some comments
This commit is contained in:
accumulator
2024-06-10 15:21:42 +02:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -307,7 +307,7 @@ class HistoryModel(CustomModel, Logger):
# add child to parent # add child to parent
node.addChild(child_node) node.addChild(child_node)
# compute balance once all children have beed added # compute balance once all children have been added
balance = 0 balance = 0
for node in self._root._children: for node in self._root._children:
balance += node._data['value'].value balance += node._data['value'].value