(self, index)
| 107 | self.numrides.append(d['rides']) |
| 108 | |
| 109 | def __getitem__(self, index): |
| 110 | return { 'route': self.routes[index], |
| 111 | 'date': self.dates[index], |
| 112 | 'daytype': self.daytypes[index], |
| 113 | 'rides': self.numrides[index] } |
| 114 | |
| 115 | # Modified version using RideData |
| 116 | def read_rides_as_dicts(filename): |
nothing calls this directly
no outgoing calls
no test coverage detected