Coverage for src/local_deep_research/library/download_management/filters/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.16.0, created at 2026-09-06 15:42 +0000
« prev ^ index » next coverage.py v7.16.0, created at 2026-09-06 15:42 +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]