We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 91a7a2f commit f3b1533Copy full SHA for f3b1533
2 files changed
src/pkgcheck/objects.py
@@ -170,9 +170,7 @@ def info(self):
170
@klass.jit_attr
171
def filter(self):
172
"""Mapping of default result filters."""
173
- from . import results
174
- return ImmutableDict({
175
- v: 'latest' for v in self.select(results.FilteredVersionResult).values()})
+ return ImmutableDict()
176
177
178
class _ChecksLazyDict(_LazyDict):
src/pkgcheck/results.py
@@ -254,10 +254,6 @@ def __lt__(self, other):
254
return super().__lt__(other, cmp=cmp)
255
256
257
-class FilteredVersionResult(VersionResult):
258
- """Result that will be optionally filtered for old packages by default."""
259
-
260
261
class _LogResult(Result):
262
"""Message caught from a logger instance."""
263
0 commit comments