(self)
| 90 | import collections |
| 91 | class RideData(collections.Sequence): |
| 92 | def __init__(self): |
| 93 | # Each value is a list with all of the values (a column) |
| 94 | self.routes = [] |
| 95 | self.dates = [] |
| 96 | self.daytypes = [] |
| 97 | self.numrides = [] |
| 98 | |
| 99 | def __len__(self): |
| 100 | # All lists assumed to have the same length |
nothing calls this directly
no outgoing calls
no test coverage detected