keyboards.py 339 B

12345678910111213
  1. """List the keyboards currently defined within QMK
  2. """
  3. from milc import cli
  4. import qmk.keyboard
  5. @cli.subcommand("List the keyboards currently defined within QMK")
  6. def list_keyboards(cli):
  7. """List the keyboards currently defined within QMK
  8. """
  9. for keyboard_name in qmk.keyboard.list_keyboards():
  10. print(keyboard_name)