(self)
| 97 | self.numrides = [] |
| 98 | |
| 99 | def __len__(self): |
| 100 | # All lists assumed to have the same length |
| 101 | return len(self.routes) |
| 102 | |
| 103 | def append(self, d): |
| 104 | self.routes.append(d['route']) |
nothing calls this directly
no outgoing calls
no test coverage detected