Skip to content

Commit 100b723

Browse files
committed
Run pre-commit
1 parent e270db9 commit 100b723

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

adafruit_midi/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,8 @@ def in_channel(self, channel):
100100
@property
101101
def out_channel(self):
102102
"""The outgoing MIDI channel. Must be 0-15. Correlates to MIDI channels 1-16, e.g.
103-
``out_channel = 3`` will send to MIDI channel 4. Default is 0 (MIDI channel 1)."""
103+
``out_channel = 3`` will send to MIDI channel 4. Default is 0 (MIDI channel 1).
104+
"""
104105
return self._out_channel
105106

106107
@out_channel.setter

tests/test_MIDIMessage_unittests.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030

3131
# pylint: enable=wrong-import-position
3232

33+
3334
# pylint: disable=invalid-name
3435
class Test_MIDIMessage_from_message_byte_tests(unittest.TestCase):
3536
def test_NoteOn_basic(self): # pylint: disable=invalid-name

tests/test_note_parser.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ def test_good_text(self):
6969
self.assertEqual(note_parser("A4"), 69)
7070

7171
def test_bad_text(self):
72-
7372
for text_note in ["H", "H4", "asdfasdfasdf", "000", "999"]:
7473
with self.assertRaises(ValueError):
7574
note_parser(text_note)

0 commit comments

Comments
 (0)