(self)
| 55 | return a |
| 56 | |
| 57 | def finalDetails(self): |
| 58 | self.customerDetails() |
| 59 | print("Final charge:", end="") |
| 60 | if self.calculateCharge() > 200: |
| 61 | print("to be return in 4 days") |
| 62 | else: |
| 63 | print("to be return in 7 days") |
| 64 | |
| 65 | |
| 66 | while True: |
no test coverage detected