Skip to content

Commit

Permalink
Merge pull request #6 from kamangir/general-refactor-2024-09-20-71143
Browse files Browse the repository at this point in the history
general refactor
  • Loading branch information
kamangir authored Sep 21, 2024
2 parents 85d487b + 0d85846 commit f34e6d3
Show file tree
Hide file tree
Showing 2 changed files with 5 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,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"
6 changes: 4 additions & 2 deletions hubblescope/__main__.py
Original file line number Diff line number Diff line change
@@ -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,
Expand Down

0 comments on commit f34e6d3

Please sign in to comment.