(ext)
| 209 | |
| 210 | |
| 211 | def _normalize_ext(ext): |
| 212 | ext = ext.strip() |
| 213 | if not ext: |
| 214 | return ext |
| 215 | return ext if ext.startswith(".") else f".{ext}" |
| 216 | |
| 217 | |
| 218 | def list_image_paths(image_folder, image_ext): |
no outgoing calls
no test coverage detected