From a3e152ae9e0505541e020ea50c30a01232d000b9 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 5 Nov 2018 14:01:23 +0100 Subject: [PATCH] [py] [style] add space around * in midiconv.py --- python/lib/aubio/midiconv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lib/aubio/midiconv.py b/python/lib/aubio/midiconv.py index a6d9ce60..99b3c0bc 100644 --- a/python/lib/aubio/midiconv.py +++ b/python/lib/aubio/midiconv.py @@ -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 -- 2.11.0