[py] [style] add space around * in midiconv.py
authorPaul Brossier <piem@piem.org>
Mon, 5 Nov 2018 13:01:23 +0000 (14:01 +0100)
committerPaul Brossier <piem@piem.org>
Mon, 5 Nov 2018 13:01:23 +0000 (14:01 +0100)
python/lib/aubio/midiconv.py

index a6d9ce6..99b3c0b 100644 (file)
@@ -72,7 +72,7 @@ def note2midi(note):
     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