WeblateOrg / weblate

Implicit enumerate calls found PTC-W0060
Anti-pattern
Major
6 months ago3 years old
Consider replacing range(len(highlights)) with enumerate(highlights)
61    highlights.sort(key=itemgetter(0))
62
63    # Remove overlapping ones
64    for hl_idx in range(len(highlights)):65        if hl_idx >= len(highlights):
66            break
67        elref = highlights[hl_idx]