(self, tree, transactions)
| 144 | self.canvas.draw() |
| 145 | |
| 146 | def update_table(self, tree, transactions): |
| 147 | for i in tree.get_children(): |
| 148 | tree.delete(i) |
| 149 | for transaction in transactions: |
| 150 | tree.insert('', 'end', values=transaction) |
| 151 | |
| 152 | |
| 153 | if __name__ == "__main__": |
no test coverage detected