From 19a2fa34b8b253fa5bfd7c8cbb7b51287d30cbbe Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 23 Jul 2021 09:53:44 +0100 Subject: More Python 3 fixes --- examples/plotpeaks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples') diff --git a/examples/plotpeaks.py b/examples/plotpeaks.py index ea9ff4c..adf9110 100644 --- a/examples/plotpeaks.py +++ b/examples/plotpeaks.py @@ -10,7 +10,7 @@ if len(sys.argv) != 2: audio = simpl.read_wav(sys.argv[1])[0] # take just a few frames -audio = audio[len(audio) / 2:(len(audio) / 2) + 4096] +audio = audio[len(audio) // 2:(len(audio) // 2) + 4096] # peak detection using the SndObj library pd = simpl.SndObjPeakDetection() -- cgit v1.2.3