diff --git a/blue_geo/__init__.py b/blue_geo/__init__.py index b786cffa..bcb557d7 100644 --- a/blue_geo/__init__.py +++ b/blue_geo/__init__.py @@ -4,7 +4,7 @@ DESCRIPTION = f"{ICON} AI for precise geospatial data analysis and visualization." -VERSION = "4.170.1" +VERSION = "4.171.1" REPO_NAME = "blue-geo" diff --git a/blue_geo/catalog/classes.py b/blue_geo/catalog/classes.py index f6d3e793..1a0c9610 100644 --- a/blue_geo/catalog/classes.py +++ b/blue_geo/catalog/classes.py @@ -13,7 +13,7 @@ FirmsCatalog, ] -list_of_catalogs = sorted( +list_of_catalogs: List[str] = sorted( [catalog_class.name for catalog_class in list_of_catalog_classes] ) diff --git a/blue_geo/tests/test_catalog.py b/blue_geo/tests/test_catalog.py index b085994d..5f13d01a 100644 --- a/blue_geo/tests/test_catalog.py +++ b/blue_geo/tests/test_catalog.py @@ -50,7 +50,7 @@ def test_list_of_datacube_classes( @pytest.mark.parametrize( ["catalog_name", "expected_catalog_class"], - [[catalog_name, catalog_class] for catalog_name, catalog_class in list_of_catalogs], + [[catalog_class.name, catalog_class] for catalog_class in list_of_catalog_classes], ) def test_get_catalog( catalog_name: str, @@ -62,7 +62,7 @@ def test_get_catalog( @pytest.mark.parametrize( ["catalog_name", "expected_catalog_class"], - [[catalog_name, catalog_class] for catalog_name, catalog_class in list_of_catalogs], + [[catalog_class.name, catalog_class] for catalog_class in list_of_catalog_classes], ) def test_get_catalog_class( catalog_name: str,