Skip to content

Commit

Permalink
datacube query refactor - kamangir/bolt#746
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Jul 21, 2024
1 parent 167b8b9 commit 746a168
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion blue_geo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

DESCRIPTION = f"{ICON} AI for precise geospatial data analysis and visualization."

VERSION = "4.97.1"
VERSION = "4.98.1"

REPO_NAME = "blue-geo"

Expand Down
4 changes: 2 additions & 2 deletions blue_geo/datacube/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
parser.add_argument(
"--count",
type=int,
default=-1,
default=1,
)
parser.add_argument(
"--delim",
Expand Down Expand Up @@ -88,7 +88,7 @@
output = output[args.offset :]

if args.count != -1:
output = output[args.count]
output = output[: args.count]

if args.log:
logger.info(
Expand Down

0 comments on commit 746a168

Please sign in to comment.