(self, acc_no)
| 133 | return self.cur.fetchall() |
| 134 | |
| 135 | def delete_acc(self, acc_no): |
| 136 | self.cur.execute("DELETE FROM bank WHERE acc_no=?", (acc_no,)) |
| 137 | self.conn.commit() |
| 138 | |
| 139 | # ----------------- Stats ----------------- |
| 140 | def all_money(self): |
no outgoing calls
no test coverage detected