From 0d858465f3ae7068133f7fddbc18b7c284c7d091 Mon Sep 17 00:00:00 2001 From: kamangir Date: Fri, 20 Sep 2024 21:55:45 -0700 Subject: [PATCH] =?UTF-8?q?start=20of=20general-refactor-2024-09-20-71143?= =?UTF-8?q?=20=F0=9F=AA=84=20-=20kamangir/bolt#746?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- hubblescope/__init__.py | 2 +- hubblescope/__main__.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) 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,