mirror of
https://github.com/Keychron/qmk_firmware.git
synced 2025-01-06 09:01:21 +06: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
|