mirror of
https://github.com/qmk/qmk_firmware
synced 2024-11-14 16:05:11 +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
|