Skip to content

Commit

Permalink
Remove old make_uml, take two
Browse files Browse the repository at this point in the history
  • Loading branch information
danr committed Aug 18, 2023
1 parent 84e4c33 commit f574a94
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions cellpainter/cellpainter/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from pbutils import show
import pbutils

from . import make_uml
from . import protocol
from . import estimates
from . import moves
Expand Down Expand Up @@ -78,7 +77,6 @@ class Args(SmallProtocolArgs, CellPaintingArgs):
pf_speed: int = arg(default=50, help='Robot arm speed [1-100]')
json_arg: str = arg(help='Give arguments as json on the command line')
yes: bool = arg(help='Assume yes in confirmation questions')
make_uml: str = arg(help='Write uml in dot format to the given path and exit')

desc: str = arg(help='Experiment description metadata, example: "specs935-v1"')
operators: str = arg(help='Experiment metadata, example: "Amelie and Christa"')
Expand Down Expand Up @@ -124,10 +122,6 @@ def cmdline_to_log(cmdline: str):

def main_with_args(args: Args, parser: argparse.ArgumentParser | None=None):

if args.make_uml:
make_uml.visualize_modules(args.make_uml)
sys.exit(0)

if args.list_imports:
my_dir = os.path.dirname(__file__)
for m in sys.modules.values():
Expand Down

0 comments on commit f574a94

Please sign in to comment.