run yapf on the code
This commit is contained in:
@ -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'
|
||||
|
Reference in New Issue
Block a user