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.
 
 
 
 
 
 

20 lines
322 B

import subprocess
import click
@click.command()
def teleop():
"""CLI for interacting with the osmo."""
subprocess.run(["python", "decoupled_wbc/control/teleop/gui/main.py"])
@click.group()
def cli():
"""CLI for interacting with the osmo."""
cli.add_command(teleop)
if __name__ == "__main__":
cli()