Coverage for slidge/util/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.15.2, created at 2026-08-18 04:30 +0000
« prev ^ index » next coverage.py v7.15.2, created at 2026-08-18 04:30 +0000
1"""
2Miscellaneous helpful functions.
3"""
5from . import types
6from .util import (
7 is_valid_phone_number,
8 replace_mentions,
9 strip_illegal_chars,
10)
12__all__ = [
13 "is_valid_phone_number",
14 "replace_mentions",
15 "strip_illegal_chars",
16 "types",
17]