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