diff --git a/hubblescope/__init__.py b/hubblescope/__init__.py index 6c67a5a..53b203f 100644 --- a/hubblescope/__init__.py +++ b/hubblescope/__init__.py @@ -4,6 +4,6 @@ DESCRIPTION = f"{ICON} tools to access and process Hubble Space Telescope imagery and other datasets on AWS Open Data Registry." -VERSION = "4.35.1" +VERSION = "4.36.1" MARQUEE = "https://github.com/kamangir/hubble/raw/main/assets/hst/u4ge0106r_c0m.gif" diff --git a/hubblescope/__main__.py b/hubblescope/__main__.py index 68e6984..cadf236 100644 --- a/hubblescope/__main__.py +++ b/hubblescope/__main__.py @@ -1,11 +1,13 @@ import argparse + +from blueness.argparse.generic import sys_exit + from hubblescope.datasets import get from hubblescope.ingest import ingest from hubblescope import NAME, VERSION, DESCRIPTION, ICON from hubblescope.logger import logger -from blueness.argparse.generic import sys_exit -parser = argparse.ArgumentParser(NAME, description=f"{NAME}-{VERSION}") +parser = argparse.ArgumentParser(NAME) parser.add_argument( "task", type=str,