Coverage for src/local_deep_research/library/download_management/filters/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.15.1, created at 2026-07-19 23:35 +0000
« prev ^ index » next coverage.py v7.15.1, created at 2026-07-19 23:35 +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]