(v)
| 14967 | return re.sub(r"\s+", " ", str(v or "").strip().lower()) |
| 14968 | |
| 14969 | def _clean_name(v): |
| 14970 | return re.sub(r"[^a-z0-9]", "", _norm_text(v).replace("@", "")) |
| 14971 | |
| 14972 | def _username_norm(v): |
| 14973 | return _clean_name(v).strip() |
nothing calls this directly
no outgoing calls
no test coverage detected