From c39753bd283beb9ca85ce78ad447315dbe1243e3 Mon Sep 17 00:00:00 2001 From: "Gregory H. Halverson" Date: Thu, 17 Jul 2025 11:14:15 -0700 Subject: [PATCH] v1.5.2 removing unecessary **kwargs --- harmonized_landsat_sentinel/HLS2_CMR_connection.py | 6 ++---- harmonized_landsat_sentinel/version.txt | 2 +- pyproject.toml | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/harmonized_landsat_sentinel/HLS2_CMR_connection.py b/harmonized_landsat_sentinel/HLS2_CMR_connection.py index 9ad0943..59619a4 100644 --- a/harmonized_landsat_sentinel/HLS2_CMR_connection.py +++ b/harmonized_landsat_sentinel/HLS2_CMR_connection.py @@ -134,8 +134,7 @@ def landsat(self, tile: str, date_UTC: Union[date, str]) -> HLS2LandsatGranule: def NDVI( self, tile: str, - date_UTC: Union[date, str], - **kwargs) -> Raster: + date_UTC: Union[date, str]) -> Raster: """ Retrieve the NDVI (Normalized Difference Vegetation Index) raster for a given HLS tile and date. @@ -235,8 +234,7 @@ def NDVI( def albedo( self, tile: str, - date_UTC: Union[date, str], - **kwargs) -> Raster: + date_UTC: Union[date, str]) -> Raster: """ Retrieve the surface albedo raster for a given HLS tile and date. diff --git a/harmonized_landsat_sentinel/version.txt b/harmonized_landsat_sentinel/version.txt index 8e03717..a73b432 100644 --- a/harmonized_landsat_sentinel/version.txt +++ b/harmonized_landsat_sentinel/version.txt @@ -1 +1 @@ -1.5.1 \ No newline at end of file +1.5.2 \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 8a8a9c0..b72c989 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "harmonized-landsat-sentinel" -version = "1.5.1" +version = "1.5.2" description = "Harmonized Landsat Sentinel (HLS) search and download utility" readme = "README.md" authors = [