mirror of
https://github.com/zsa/qmk_firmware.git
synced 2026-01-15 18:09:42 +00:00
7 lines
173 B
Python
7 lines
173 B
Python
|
|
class NoSuchKeyboardError(Exception):
|
||
|
|
"""Raised when we can't find a keyboard/keymap directory.
|
||
|
|
"""
|
||
|
|
|
||
|
|
def __init__(self, message):
|
||
|
|
self.message = message
|