run yapf on the code
This commit is contained in:
parent
5b7a5b2a76
commit
c7eede2249
4 changed files with 5 additions and 1 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue