Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
laspsandoval committed Jan 4, 2024
1 parent 64de5b5 commit 5d2aea2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/source/development-guide/docker.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Login to the ECR.

Build the Docker image.

`docker build -t <image name> .`
`docker build -t <image name> . --no-cache`

Tag the image and push to the ECR.

Expand Down
3 changes: 1 addition & 2 deletions imap_processing/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,9 @@ def _parse_args(cli_args: list):
f"The data level to process. Acceptable values are: {processing_levels}"
)

parser = argparse.ArgumentParser(description=description)
parser = argparse.ArgumentParser(prog="imap_cli", description=description)
parser.add_argument("--instrument", type=str, required=True, help=instrument_help)
parser.add_argument("--level", type=str, required=True, help=level_help)

args = parser.parse_args(cli_args)

return args
Expand Down

0 comments on commit 5d2aea2

Please sign in to comment.