diff options
author | David Robillard <d@drobilla.net> | 2011-04-22 22:01:11 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-04-22 22:01:11 +0000 |
commit | 2cb85fe854eec9063a59c8cda7c38114c15c5e07 (patch) | |
tree | efb50e8b6f733f549efb5633eb868d45e0bc6e98 /swig/python | |
parent | 7fcab46b311e9efeece9d2b3cc90bdbcc198e9cd (diff) | |
download | lilv-2cb85fe854eec9063a59c8cda7c38114c15c5e07.tar.gz lilv-2cb85fe854eec9063a59c8cda7c38114c15c5e07.tar.bz2 lilv-2cb85fe854eec9063a59c8cda7c38114c15c5e07.zip |
Fix Python whitespace (PEP8)
git-svn-id: http://svn.drobilla.net/lad/trunk/slv2@3195 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'swig/python')
-rwxr-xr-x | swig/python/lv2_apply.py | 8 | ||||
-rwxr-xr-x | swig/python/lv2_list.py | 5 |
2 files changed, 5 insertions, 8 deletions
diff --git a/swig/python/lv2_apply.py b/swig/python/lv2_apply.py index 97d71c5..3eb4ea7 100755 --- a/swig/python/lv2_apply.py +++ b/swig/python/lv2_apply.py @@ -46,17 +46,17 @@ if wav_in.getnchannels() != n_audio_in: wav_in.getnchannels(), n_audio_in) sys.exit(1) -# Open output file +# Open output file wav_out = wave.open(wav_out_path, 'w') if not wav_out: print "Failed to open output `%s'\n" % wav_out_path sys.exit(1) -# Set output file to same format as input (except possibly nchannels) +# Set output file to same format as input (except possibly nchannels) wav_out.setparams(wav_in.getparams()) wav_out.setnchannels(n_audio_out) -rate = wav_in.getframerate() +rate = wav_in.getframerate() nframes = wav_in.getnframes() # Instantiate plugin @@ -74,7 +74,7 @@ def read_float(wf, nframes): wav = wave.struct.unpack("%uB" % (len(wav)), wav) wav = [ s - 128 for s in wav ] wav = [ i / float(math.pow(2, 8)) for i in wav ] - + n_channels = wf.getnchannels() wavs = [] if n_channels > 1: diff --git a/swig/python/lv2_list.py b/swig/python/lv2_list.py index 4b09e86..786326b 100755 --- a/swig/python/lv2_list.py +++ b/swig/python/lv2_list.py @@ -6,7 +6,4 @@ world = slv2.World() world.load_all() for i in world.get_all_plugins(): - print(i.get_uri()) - - - + print(i.get_uri()) |