1 2 3 4 5 6 7 8 9 10 11 12
""" Pylint score: -1.67 """ import nonexistent # pylint: disable=broad-except def loop(): count = 0 for _ in range(5): count += 1 print(count)