Coverage for src / local_deep_research / text_processing / __init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.12.0, created at 2026-01-11 00:51 +0000
« prev ^ index » next coverage.py v7.12.0, created at 2026-01-11 00:51 +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]