lister_base: make the default filter return all entries

This commit is contained in:
Nicolas Dandrimont 2017-09-11 14:27:56 +02:00
parent 8a519af8f5
commit 7476f5d533

View file

@ -147,7 +147,7 @@ class SWHListerBase(abc.ABC, config.SWHConfig):
Returns:
models_list with entries changed according to custom logic.
"""
pass
return models_list
def is_within_bounds(self, inner, lower=None, upper=None):
"""See if a sortable value is inside the range [lower,upper].