Merge pull request #82 from Se3ek/typo-correction

typo in ex2_2
This commit is contained in:
David Beazley
2024-07-31 10:35:08 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -206,7 +206,7 @@ into 4 separate `append()` operations.
class RideData(collections.abc.Sequence):
def __init__(self):
# Each value is a list with all of the values (a column)
# Each value is a list with all the values (a column)
self.routes = []
self.dates = []
self.daytypes = []