WeblateOrg / weblate

Implicit enumerate calls found PTC-W0060
Anti-pattern
Major
1 occurrence in this check
Consider replacing range(len(highlights)) with enumerate(highlights)
57    highlights.sort(key=lambda x: x[0])
58
59    # Remove overlapping ones
60    for hl_idx in range(len(highlights)):61        if hl_idx >= len(highlights):
62            break
63        elref = highlights[hl_idx]