Passed
Push — master ( fe7579...78f560 )
by Erik
01:07
created

examples/example_005.py (3 issues)

1
from pypen import *
2
3
4
def start():
5
    for x, y in pixels():
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable pixels does not seem to be defined.
Loading history...
6
        rectangle(x, y, 1, 1, (random(255), random(255), random(255)))
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable rectangle does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable random does not seem to be defined.
Loading history...
7