ref: c4fc0f2b95b05cabdeaf37e1058aa1a252753786
parent: 4d1bf0e59fa457dceec899d316bd094053b26eee
author: Paul Brossier <piem@piem.org>
date: Thu Sep 14 10:38:15 EDT 2017
python/demos/demo_tapthebeat.py: prefix unused arguments with _
--- a/python/demos/demo_tapthebeat.py
+++ b/python/demos/demo_tapthebeat.py
@@ -44,7 +44,7 @@
click = 0.7 * np.sin(2. * np.pi * np.arange(hop_s) / hop_s * samplerate / 3000.)
# pyaudio callback
-def pyaudio_callback(in_data, frame_count, time_info, status):
+def pyaudio_callback(_in_data, _frame_count, _time_info, _status):
samples, read = a_source()
is_beat = a_tempo(samples)
if is_beat: