shithub: aubio

Download patch

ref: a3e152ae9e0505541e020ea50c30a01232d000b9
parent: 450c57e1da7af7e4a593f9ce17a56e3254e0cb49
author: Paul Brossier <piem@piem.org>
date: Mon Nov 5 09:01:23 EST 2018

[py] [style] add space around * in midiconv.py

--- a/python/lib/aubio/midiconv.py
+++ b/python/lib/aubio/midiconv.py
@@ -72,7 +72,7 @@
     if len(note) not in range(2, 5):
         msg = "string of 2 to 4 characters expected, got {:d} ({:s})"
         raise ValueError(msg.format(len(note), note))
-    notename, modifier, octave = [None]*3
+    notename, modifier, octave = [None] * 3
 
     if len(note) == 4:
         notename, modifier, octave_sign, octave = note