diff options
author | Joel Challis <git@zvecr.com> | 2021-05-01 02:00:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-01 02:00:04 +0100 |
commit | fc2b51194c58140b096b4c953c703b7f3f6f1fbc (patch) | |
tree | c0594513f50a37881ee31d794aba29a053717376 /lib/python/qmk/cli/generate/__init__.py | |
parent | 18dc12cd78448bffe4ad54aa15aa715ee959e64c (diff) |
Allow <keyboard>.h to be optional when going data driven (#12706)
* Allow <keyboard>.h to be optional when going data driven
* Remove stub files as no longer required
* Rename function
* Remove include of layouts.h for now
* Take advantage of type=keyboard_folder
* Take advantage of type=keyboard_folder - kb should still be mandatory
Diffstat (limited to 'lib/python/qmk/cli/generate/__init__.py')
-rw-r--r-- | lib/python/qmk/cli/generate/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/python/qmk/cli/generate/__init__.py b/lib/python/qmk/cli/generate/__init__.py index f064649ac7..0efca0022d 100644 --- a/lib/python/qmk/cli/generate/__init__.py +++ b/lib/python/qmk/cli/generate/__init__.py @@ -3,6 +3,7 @@ from . import config_h from . import dfu_header from . import docs from . import info_json +from . import keyboard_h from . import layouts from . import rgb_breathe_table from . import rules_mk |