Skip to content

Commit

Permalink
pylint fix, hopefully - kamangir/bolt#746
Browse files Browse the repository at this point in the history
  • Loading branch information
kamangir committed Jul 26, 2024
1 parent 9135323 commit 0b78ac9
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.145.1"
VERSION = "4.146.1"

REPO_NAME = "blue-geo"

Expand Down
4 changes: 2 additions & 2 deletions blue_geo/catalog/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
]
Expand All @@ -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
Expand Down

0 comments on commit 0b78ac9

Please sign in to comment.