Skip to content

Commit

Permalink
renamed back to harmony
Browse files Browse the repository at this point in the history
  • Loading branch information
James Wood authored and James Wood committed Dec 6, 2024
1 parent 077062c commit 602dd68
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions podaac/merger/harmony/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ def main(config=None):
"""Main Harmony CLI entrypoint"""

parser = ArgumentParser()
harmony_service_lib.setup_cli(parser)
harmony.setup_cli(parser)

args = parser.parse_args()
if harmony_service_lib.is_harmony_cli(args):
harmony_service_lib.run_cli(parser, args, ConciseService, cfg=config)
if harmony.is_harmony_cli(args):
harmony.run_cli(parser, args, ConciseService, cfg=config)
else:
parser.error("Only --harmony CLIs are supported")

Expand Down

0 comments on commit 602dd68

Please sign in to comment.