From: Paul Brossier Date: Mon, 5 Nov 2018 13:01:23 +0000 (+0100) Subject: [py] [style] add space around * in midiconv.py X-Git-Tag: 0.4.8~69 X-Git-Url: https://git.aubio.org/?a=commitdiff_plain;h=a3e152ae9e0505541e020ea50c30a01232d000b9;p=aubio.git [py] [style] add space around * in midiconv.py --- 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