Skip to content

Commit

Permalink
src/ctl: add enumerate-cache command to arg parser
Browse files Browse the repository at this point in the history
  • Loading branch information
croissanne authored and achilleas-k committed Jul 18, 2024
1 parent fc5e687 commit 408f8cc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/ctl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,16 @@ def _parse_args(self):
type=str,
)

cmd_push = cmd.add_parser(
"enumerate-cache",
add_help=True,
allow_abbrev=False,
argument_default=None,
description="Build the cache for enumerate",
help="Build the cache for enumerate",
prog=f"{self._parser.prog} enumerate-cache",
)

return self._parser.parse_args(self._argv[1:])

def _verify_args(self):
Expand Down

0 comments on commit 408f8cc

Please sign in to comment.