From 7d4011245946898f73205b5713767579304fdecf Mon Sep 17 00:00:00 2001 From: John Glover Date: Tue, 30 Oct 2012 08:19:07 +0000 Subject: [peak_detection] PEP8 --- simpl/peak_detection.pyx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/simpl/peak_detection.pyx b/simpl/peak_detection.pyx index 66d5a1a..a5c680f 100644 --- a/simpl/peak_detection.pyx +++ b/simpl/peak_detection.pyx @@ -126,7 +126,8 @@ cdef class SMSPeakDetection(PeakDetection): def find_peaks(self, np.ndarray[dtype_t, ndim=1] audio): self.frames = [] - cdef vector[c_Frame*] output_frames = self.thisptr.find_peaks(len(audio), audio.data) + cdef vector[c_Frame*] output_frames = \ + self.thisptr.find_peaks(len(audio), audio.data) for i in range(output_frames.size()): f = Frame(output_frames[i].size(), False) f.set_frame(output_frames[i]) -- cgit v1.2.3