Coverage for src/local_deep_research/text_processing/__init__.py: 100%

2 statements  

« prev     ^ index     » next       coverage.py v7.15.1, created at 2026-07-19 23:35 +0000

1""" 

2Text Processing Utilities 

3 

4Provides utilities for text cleaning and normalization. 

5""" 

6 

7from .text_cleaner import remove_surrogates 

8 

9__all__ = [ 

10 "remove_surrogates", 

11]