(self)
| 138 | |
| 139 | # ----------------- Stats ----------------- |
| 140 | def all_money(self): |
| 141 | self.cur.execute("SELECT SUM(balance) FROM bank") |
| 142 | total = self.cur.fetchone()[0] |
| 143 | return total if total else 0 |
| 144 | |
| 145 | # ----------------- Cleanup ----------------- |
| 146 | def close(self): |
no outgoing calls
no test coverage detected