__init__.py 357 B

1234567891011121314
  1. """QMK CLI Subcommands
  2. We list each subcommand here explicitly because all the reliable ways of searching for modules are slow and delay startup.
  3. """
  4. from . import cformat
  5. from . import compile
  6. from . import config
  7. from . import doctor
  8. from . import hello
  9. from . import json
  10. from . import list
  11. from . import new
  12. from . import pyformat
  13. from . import pytest