2021-05-02 15:59:10 +00:00
|
|
|
"""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
|
2021-05-19 22:24:46 +00:00
|
|
|
cli.run(['util/new_keyboard.sh'], stdin=None, capture_output=False)
|