diff options
author | Zach White <skullydazed@gmail.com> | 2021-05-24 23:36:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-24 23:36:38 -0700 |
commit | aa97f52963f3da6aa112093d357296e62bfa5452 (patch) | |
tree | 996629641891d8fddc9973a49200ca030dc995ea /lib/python/qmk/cli/__init__.py | |
parent | bc67ca6a59ffa3d6e147b276c0544791e5f91d02 (diff) | |
download | qmk_firmware-aa97f52963f3da6aa112093d357296e62bfa5452.tar.gz qmk_firmware-aa97f52963f3da6aa112093d357296e62bfa5452.zip |
Use milc.subcommand.config instead of qmk.cli.config (#13002)
* Use milc.subcommand.config instead
* pyformat
* remove the config test
Diffstat (limited to 'lib/python/qmk/cli/__init__.py')
-rw-r--r-- | lib/python/qmk/cli/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/cli/__init__.py b/lib/python/qmk/cli/__init__.py index 6fe769fe7b..be5ba90ad7 100644 --- a/lib/python/qmk/cli/__init__.py +++ b/lib/python/qmk/cli/__init__.py @@ -140,7 +140,7 @@ from . import cformat # noqa from . import chibios # noqa from . import clean # noqa from . import compile # noqa -from . import config # noqa +from milc.subcommand import config # noqa from . import docs # noqa from . import doctor # noqa from . import fileformat # noqa |