Coverage for slidge / util / __init__.py: 100%

3 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2026-03-13 22:59 +0000

1""" 

2Miscellaneous helpful functions. 

3""" 

4 

5from . import types 

6from .util import ( 

7 SubclassableOnce, 

8 is_valid_phone_number, 

9 replace_mentions, 

10 strip_illegal_chars, 

11) 

12 

13__all__ = [ 

14 "SubclassableOnce", 

15 "is_valid_phone_number", 

16 "replace_mentions", 

17 "strip_illegal_chars", 

18 "types", 

19]