Coverage for src/local_deep_research/text_processing/__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"""
2Text Processing Utilities
4Provides utilities for text cleaning and normalization.
5"""
7from .text_cleaner import remove_surrogates
9__all__ = [
10 "remove_surrogates",
11]