diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 4e73b023..6551e20e 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -5,7 +5,7 @@ ci: repos: - repo: https://github.com/astral-sh/ruff-pre-commit # Ruff version. - rev: v0.7.2 + rev: v0.8.1 hooks: # Run the linter with fix argument. - id: ruff diff --git a/mesa_geo/__init__.py b/mesa_geo/__init__.py index 335b5e1f..d74fdd29 100644 --- a/mesa_geo/__init__.py +++ b/mesa_geo/__init__.py @@ -12,15 +12,15 @@ from mesa_geo.tile_layers import RasterWebTile, WMSWebTile __all__ = [ - "GeoSpace", - "GeoAgent", "AgentCreator", - "ImageLayer", "Cell", + "GeoAgent", + "GeoSpace", + "ImageLayer", "RasterLayer", - "visualization", "RasterWebTile", "WMSWebTile", + "visualization", ] __title__ = "Mesa-Geo" diff --git a/mesa_geo/visualization/__init__.py b/mesa_geo/visualization/__init__.py index f43d7bac..25a6ebd0 100644 --- a/mesa_geo/visualization/__init__.py +++ b/mesa_geo/visualization/__init__.py @@ -3,4 +3,4 @@ from .geojupyter_viz import GeoJupyterViz from .leaflet_viz import LeafletViz -__all__ = ["make_geospace_leaflet", "MapModule", "GeoJupyterViz", "LeafletViz"] +__all__ = ["GeoJupyterViz", "LeafletViz", "MapModule", "make_geospace_leaflet"]