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 a9040d7 commit 9135323
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 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.144.1"
VERSION = "4.145.1"

REPO_NAME = "blue-geo"

Expand Down
3 changes: 0 additions & 3 deletions blue_geo/catalog/firms/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,3 @@

class FirmsCatalog(GenericCatalog):
name = "firms"

def __init__(self):
super().__init__()
6 changes: 2 additions & 4 deletions blue_geo/tests/test_catalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,6 @@ def test_get_datacube_classes(catalog_class: Type[GenericCatalog]):
datacube_class_list = get_datacube_classes(catalog_class)

assert all(
[
datacube_class.catalog == catalog_class
for datacube_class in datacube_class_list
]
datacube_class.catalog == catalog_class
for datacube_class in datacube_class_list
)

0 comments on commit 9135323

Please sign in to comment.