photocrowd / django-cursor-pagination

Cursor-based pagination for Django
BSD 3-Clause "New" or "Revised" License
156 stars 27 forks source link

Only import Sequence from collections.abc #40

Closed jaap3 closed 3 years ago

jaap3 commented 3 years ago

collections.abc has been available since Python 3.3. The fallback implemented here is only necessary for Python 2 or Python < 3.3. None of the supported Django versions run on Python 2 or Python 3.3, so this fallback is never required.