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