This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

12 lines
296 B
Python
Raw Normal View History

"""This script automates the creation of keyboards.
"""
from milc import cli
@cli.subcommand('Creates a new keyboard')
def new_keyboard(cli):
"""Creates a new keyboard
"""
# TODO: replace this bodge to the existing script
cli.run(['util/new_keyboard.sh'], capture_output=False)