diff --git a/blue_geo/__init__.py b/blue_geo/__init__.py index e17888bf..8e5a5187 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.145.1" +VERSION = "4.146.1" REPO_NAME = "blue-geo" diff --git a/blue_geo/catalog/classes.py b/blue_geo/catalog/classes.py index 58cf8a7c..36fcca2c 100644 --- a/blue_geo/catalog/classes.py +++ b/blue_geo/catalog/classes.py @@ -3,7 +3,7 @@ from .generic import GenericCatalog, GenericDatacube, VoidDatacube from .firms.area import FirmsAreaDatacube -list_of_catalog_classes: list[Type[GenericCatalog]] = [ +list_of_catalog_classes: List[Type[GenericCatalog]] = [ GenericCatalog, FirmsCatalog, ] @@ -29,7 +29,7 @@ def get_datacube_class(datacube_id: str) -> Type[GenericDatacube]: def get_datacube_classes( catalog_class: Type[GenericCatalog], -) -> list[Type[GenericDatacube]]: +) -> List[Type[GenericDatacube]]: return [ datacube_class for datacube_class in list_of_datacube_classes