Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Ortiz <rafael@activitycentral.com>2012-08-09 02:20:24 (GMT)
committer Rafael Ortiz <rafael@activitycentral.com>2012-08-09 02:20:24 (GMT)
commita672c6d389f2eec99d99b8cb3b5123e6d6a4aca8 (patch)
tree0aa9647c3ea062933ce94c00bea4448f6686761b
parent917627f0ffab3b01b764f7169ec87c79a811cc54 (diff)
minor pep8 tweaks
-rw-r--r--espeak.py3
-rw-r--r--mouth.py2
-rw-r--r--roundbox.py2
3 files changed, 4 insertions, 3 deletions
diff --git a/espeak.py b/espeak.py
index 8923e33..956bf21 100644
--- a/espeak.py
+++ b/espeak.py
@@ -158,7 +158,8 @@ class BaseAudioGrab(GObject.GObject):
def _new_buffer(self, buf):
self.emit("new-buffer", buf)
return False
-
+
+
def voices():
out = []
result = subprocess.Popen(["espeak", "--voices"],
diff --git a/mouth.py b/mouth.py
index 964653e..e885030 100644
--- a/mouth.py
+++ b/mouth.py
@@ -33,7 +33,7 @@ try:
except:
from Numeric import ceil
from FFT import *
-
+
class Mouth(Gtk.DrawingArea):
diff --git a/roundbox.py b/roundbox.py
index 807385d..0049a36 100644
--- a/roundbox.py
+++ b/roundbox.py
@@ -32,7 +32,7 @@ class RoundBox(Gtk.Box):
self._y = allocation.y
self._width = allocation.width
self._height = allocation.height
-
+
def do_draw(self, cr):
rect = self.get_allocation()
cr.rectangle(rect.x, rect.y, rect.width, rect.height)