From cfb73ee12c7adc1af9be779fccb9c9c38a4a4779 Mon Sep 17 00:00:00 2001 From: David Sowder Date: Sun, 19 Feb 2012 20:56:53 -0600 Subject: [PATCH] pep8 compliance: E302 expected 2 blank lines --- glbackground.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/glbackground.py b/glbackground.py index 951c9b1..1e64e9d 100644 --- a/glbackground.py +++ b/glbackground.py @@ -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