(self, destination, method, weight)
| 72 | print("Example 2") |
| 73 | class Delivery: |
| 74 | def __init__(self, destination, method, weight): |
| 75 | self.destination = destination |
| 76 | self.method = method |
| 77 | self.weight = weight |
| 78 | |
| 79 | @classmethod |
| 80 | def from_row(cls, row): |
nothing calls this directly
no outgoing calls
no test coverage detected