run yapf on the code

This commit is contained in:
skullY
2019-08-21 23:46:51 -07:00
committed by Florian Didron
parent b4dc878501
commit b198661d18
4 changed files with 5 additions and 1 deletions

View File

@@ -1,7 +1,8 @@
from qmk.errors import NoSuchKeyboardError
def test_NoSuchKeyboardError():
try:
raise(NoSuchKeyboardError("test message"))
raise NoSuchKeyboardError("test message")
except NoSuchKeyboardError as e:
assert e.message == 'test message'