photocrowd / django-cursor-pagination

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

Fix deprecation warning re importing Sequence #39

Closed ifigotin closed 3 years ago

ifigotin commented 3 years ago

Currently, there is a waring regarding importing Sequence from collecitons instead of collections.abc:

DeprecationWarning: Using or importing the ABCs from 'collections' instead of from 'collections.abc' is deprecated since Python 3.3, and in 3.10 it will stop working from collections import Sequence

Attempt to first import form collections.abc followed by collections.