()
| 4623 | for compound in ('.gps.json', '.hc22000', '.pcapng', '.netjson'): |
| 4624 | if name.lower().endswith(compound): |
| 4625 | ext = compound |
| 4626 | name = name[:-len(compound)] |
| 4627 | break |
| 4628 | if not ext: |
| 4629 | dot_pos = name.rfind('.') |
| 4630 | if dot_pos > 0: |
no test coverage detected