Skip to content

Commit 944cb4d

Browse files
author
Kevin J Walters
committed
pylint does not like the comment on same line. #3
1 parent 38fd80e commit 944cb4d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

adafruit_midi/midi_message.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ class MIDIMessage:
105105
or -1 for variable length.
106106
- CHANNELMASK - mask use to apply a (wire protocol) channel number.
107107
- ENDSTATUS - the EOM status byte, only set for variable length.
108-
This is an abstract class.
108+
109+
This is an abstract class.
109110
"""
110111
_STATUS = None
111112
_STATUSMASK = None
@@ -146,7 +147,7 @@ def _search_eom_status(cls, buf, eom_status, msgstartidx, msgendidxplusone, endi
146147
# Look for a status byte
147148
# Second rule of the MIDI club is status bytes have MSB set
148149
if buf[msgendidxplusone] & 0x80:
149-
# pylint disable=simplifiable-if-statement # n/a for this technique
150+
# pylint disable=simplifiable-if-statement
150151
if buf[msgendidxplusone] == eom_status:
151152
good_termination = True
152153
else:

0 commit comments

Comments
 (0)