Basic, remove whitespace, lower case.
(x)
| 122 | |
| 123 | |
| 124 | def _clean_lower(x): |
| 125 | """Basic, remove whitespace, lower case.""" |
| 126 | return whitespace_clean(basic_clean(x)).lower() |
| 127 | |
| 128 | |
| 129 | def _clean_whitespace(x): |
nothing calls this directly
no test coverage detected