Timsty's picture
Add files using upload-large-folder tool
8cf4ead verified
Raw
History Blame Contribute Delete
322 Bytes
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()