Coverage for src/local_deep_research/library/download_management/filters/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-03 23:15 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-06-03 23:15 +0000
1"""
2Filters Submodule
4Provides smart filtering logic for downloadable resources based on
5failure history, cooldowns, and retry policies.
6"""
8from .resource_filter import ResourceFilter
10__all__ = [
11 "ResourceFilter",
12]