Add tests for max-value filter

This commit is contained in:
Matthias
2021-05-17 06:47:58 +02:00
parent 369f19df6b
commit 6659a07079
2 changed files with 6 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ class PriceFilter(IPairList):
self._enabled = ((self._low_price_ratio > 0) or
(self._min_price > 0) or
(self._max_price > 0) or
(self._max_value))
(self._max_value > 0))
@property
def needstickers(self) -> bool: