From 04c1c7fe2ecbdebc815576fd77488aa9c2d2c982 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 06:28:01 +0100 Subject: [PATCH] [pre-commit.ci] pre-commit autoupdate (#266) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.7.2 → v0.8.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.7.2...v0.8.1) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .pre-commit-config.yaml | 2 +- mesa_geo/__init__.py | 8 ++++---- mesa_geo/visualization/__init__.py | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) 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"]