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

examples/example_003.py (5 issues)

1
from pypen import *
2
3
4
def start():
5
    settings.fps = 5
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable settings does not seem to be defined.
Loading history...
6
7
8
def update():
9
    fill_screen("#E33050")
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable fill_screen does not seem to be defined.
Loading history...
10
    draw_pattern()
11
12
13
def draw_pattern():
14
    for x, y in grid(spacing=10):
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable grid does not seem to be defined.
Loading history...
15
        if random() > 0.5:
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable random does not seem to be defined.
Loading history...
16
            rectangle(x, y, 8, 8, "#F34060")
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable rectangle does not seem to be defined.
Loading history...
17