shithub: aubio

Download patch

ref: dee266fc68ee724ec5b1eb27445940dc5dedb1ad
parent: da632d3192f17db4e3b36120fc124f65fe7b3362
author: Paul Brossier <piem@piem.org>
date: Fri May 13 13:13:35 EDT 2016

python/demos/demo_reading_speed.py: avoid unused variable

--- a/python/demos/demo_reading_speed.py
+++ b/python/demos/demo_reading_speed.py
@@ -88,7 +88,7 @@
     f = aubio.source(filename, hop_size = 1024)
     total_frames = 0
     while True:
-        samples, read = f()
+        _, read = f()
         total_frames += read
         if read < f.hop_size: break
     return total_frames, f.samplerate