Skip to content

Commit

Permalink
CLI fixes for v0.5.
Browse files Browse the repository at this point in the history
Removed cli commands: run, prepare, validate, verify.
(Though I would like to resurrect `verify` at some point; as a util function.)
Fixed typing issue in cache module.
  • Loading branch information
Tyler Coles committed Jul 10, 2024
1 parent 335f07f commit ca80b59
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 663 deletions.
11 changes: 0 additions & 11 deletions epymorph/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@
from importlib.metadata import version

from epymorph.cli.cache import define_argparser as def_cache
from epymorph.cli.prepare import define_argparser as def_prepare
from epymorph.cli.run import define_argparser as def_run
from epymorph.cli.validate import define_argparser as def_validate

# from epymorph.cli.verify import define_argparser as def_verify


def define_argparser() -> ArgumentParser:
Expand All @@ -29,13 +24,7 @@ def define_argparser() -> ArgumentParser:
dest="command",
required=True)

def_run(command_parser)
def_prepare(command_parser)
def_cache(command_parser)
def_validate(command_parser)

# let's hide `verify` for now, until it's more fully-featured
# def_verify(command_parser)

return cli_parser

Expand Down
116 changes: 0 additions & 116 deletions epymorph/cli/prepare.py

This file was deleted.

Loading

0 comments on commit ca80b59

Please sign in to comment.