Passed
Push — master ( 4381c0...b257e4 )
by Erik
01:12
created

examples/example_002.py (8 issues)

1
from pypen import *
2
3
4
def start():
5
    settings.fps = 70
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
    clear()
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable clear does not seem to be defined.
Loading history...
10
    arc(WIDTH/2, HEIGHT/2, HEIGHT/4, PI*sin(TIME+1.6), PI*sin(TIME), "blue")
0 ignored issues
show
Comprehensibility Best Practice introduced by
The variable arc does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable PI does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable WIDTH does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable HEIGHT does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable sin does not seem to be defined.
Loading history...
Comprehensibility Best Practice introduced by
The variable TIME does not seem to be defined.
Loading history...
11