Create a new channel as a copy of main.
Rename main to:
Delete main? This cannot be undone.
from qmk.errors import NoSuchKeyboardError def test_nosuchkeyboarderror(): try: raise NoSuchKeyboardError("test message") except NoSuchKeyboardError as e: assert e.message == 'test message'