pep8 compliance: E302 expected 2 blank lines

This commit is contained in:
David Sowder 2012-02-19 20:56:53 -06:00
parent 7eed1284f3
commit cfb73ee12c

View File

@ -23,6 +23,7 @@ from OpenGL.GL import glEnable, glColor, glVertexPointer, glDrawArrays, glDisabl
from numpy import array
from pygame import mouse
class GLBackground(GLOrtho):
margin = 8
bg_color = (0.0, 0.0, 0.0, 0.6)
@ -40,5 +41,6 @@ class GLBackground(GLOrtho):
glDrawArrays(GL_QUADS, 0, 4)
glDisable(GL_BLEND)
class Panel(GLBackground):
pass