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