From: Paul Brossier Date: Wed, 18 Apr 2007 15:51:10 +0000 (+0200) Subject: aubioclass.py: fix indentation X-Git-Tag: bzr2git~522 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=05468516a12b949f73d55b478753c7ab6aa77730;p=aubio.git aubioclass.py: fix indentation --- diff --git a/python/aubio/aubioclass.py b/python/aubio/aubioclass.py index 70113e50..4269e29a 100644 --- a/python/aubio/aubioclass.py +++ b/python/aubio/aubioclass.py @@ -126,7 +126,7 @@ class pitchdetection: channels=1,samplerate=44100.,omode=aubio_pitchm_freq,yinthresh=0.1): self.pitchp = new_aubio_pitchdetection(bufsize,hopsize,channels, samplerate,mode,omode) - aubio_pitchdetection_set_yinthresh(self.pitchp,yinthresh) + aubio_pitchdetection_set_yinthresh(self.pitchp,yinthresh) #self.filt = filter(srate,"adsgn") def __del__(self): del_aubio_pitchdetection(self.pitchp)