(self, trainNo)
| 3 | class Train: |
| 4 | |
| 5 | def __init__(self, trainNo): |
| 6 | self.trainNo = trainNo |
| 7 | |
| 8 | def book(self, fro, to): |
| 9 | print(f"Ticket is booked in train no: {self.trainNo} from {fro} to {to}") |
nothing calls this directly
no outgoing calls
no test coverage detected