From: Paul Brossier Date: Fri, 13 May 2016 15:13:35 +0000 (+0200) Subject: python/demos/demo_reading_speed.py: avoid unused variable X-Git-Tag: 0.4.4~300^2~58 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=dee266fc68ee724ec5b1eb27445940dc5dedb1ad;p=aubio.git python/demos/demo_reading_speed.py: avoid unused variable --- diff --git a/python/demos/demo_reading_speed.py b/python/demos/demo_reading_speed.py index dbf7caf5..90739f3f 100755 --- a/python/demos/demo_reading_speed.py +++ b/python/demos/demo_reading_speed.py @@ -88,7 +88,7 @@ def read_file_aubio(filename): 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