summaryrefslogtreecommitdiff
path: root/doc/data/messages/n/no-else-continue/bad.py
blob: a561f93cc13ea458db21412fcee7311449e74e02 (plain)
1
2
3
4
5
6
def even_number_under(n: int):
    for i in range(n):
        if i % 2 == 1:  # [no-else-continue]
            continue
        else:
            yield i