Resolve merge conflicts

This commit is contained in:
Griatch 2020-04-12 12:19:03 +02:00
commit cc5aa91be1
8 changed files with 77 additions and 54 deletions

View file

@ -272,7 +272,7 @@ class EvMore(object):
Paginate by slice. This is done with an eye on memory efficiency (usually for
querysets); to avoid fetching all objects at the same time.
"""
return self._data[pageno * self.height: pageno * self.height + self.height]
return self._data[pageno * self.height : pageno * self.height + self.height]
# inits for different input types