You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
339 B

  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)