fix: Correct reference to Sequence

This commit is contained in:
Victor Engmark
2023-07-26 11:23:28 +12:00
parent 393db776e1
commit c079eb9507
4 changed files with 5 additions and 6 deletions

View File

@@ -88,7 +88,7 @@ def read_rides_as_columns(filename):
# The great "fake"
import collections
class RideData(collections.Sequence):
class RideData(collections.abc.Sequence):
def __init__(self):
# Each value is a list with all of the values (a column)
self.routes = []