(ext)
| 154 | |
| 155 | |
| 156 | def normalize_ext(ext): |
| 157 | if not ext: |
| 158 | return "" |
| 159 | ext = ext.lower().strip() |
| 160 | if ext and not ext.startswith('.'): |
| 161 | ext = '.' + ext |
| 162 | return ext |
| 163 | |
| 164 | |
| 165 | def ensure_whitelist_file(): |
no outgoing calls
no test coverage detected