Merge pull request #90 from mz0/fix-import-abc

fix AttributeError: module 'collections' has no attribute 'abc'
This commit is contained in:
David Beazley 2025-10-22 14:48:39 -05:00 committed by GitHub
commit bc3b595cc3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,7 @@
# readrides.py
import csv
import collections.abc
def read_rides_as_tuples(filename):
'''

View File

@ -1,6 +1,7 @@
# colreader.py
import collections
import collections.abc
import csv
class DataCollection(collections.abc.Sequence):