Skip to content

Commit

Permalink
blueness argparse ending refactor - kamangir/bolt#746
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Jun 16, 2024
1 parent f158385 commit 1adda46
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hubblescope/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@

DESCRIPTION = f"{ICON} tools to access and process Hubble Space Telescope imagery and other datasets on AWS Open Data Registry."

VERSION = "4.21.1"
VERSION = "4.22.1"
4 changes: 2 additions & 2 deletions hubblescope/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from hubblescope.ingest import ingest
from hubblescope import NAME, VERSION, DESCRIPTION
from hubblescope.logger import logger
from blueness.argparse.generic import ending
from blueness.argparse.generic import sys_exit

parser = argparse.ArgumentParser(NAME, description=f"{NAME}-{VERSION}")
parser.add_argument(
Expand Down Expand Up @@ -67,4 +67,4 @@
else:
success = None

ending(logger, NAME, args.task, success)
sys_exit(logger, NAME, args.task, success)

0 comments on commit 1adda46

Please sign in to comment.