From 8ffdc4cbe10f56e00ba224783bfe91b6224830b7 Mon Sep 17 00:00:00 2001 From: Ewout ter Hoeven Date: Wed, 16 Oct 2024 14:28:40 +0200 Subject: [PATCH 1/2] __init__.py: Import mesa.experimental Fixes some of the imports in the style of import mesa mesa.experimental.... --- mesa/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mesa/__init__.py b/mesa/__init__.py index 6214d18dacd..86c21840f61 100644 --- a/mesa/__init__.py +++ b/mesa/__init__.py @@ -11,6 +11,7 @@ from mesa.batchrunner import batch_run from mesa.datacollection import DataCollector from mesa.model import Model +import mesa.experimental as experimental __all__ = [ "Model", From ab0b528b85bfb61a0e26dd8a759cccfb2291334b Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 12:32:01 +0000 Subject: [PATCH 2/2] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- mesa/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesa/__init__.py b/mesa/__init__.py index 86c21840f61..c5ff65a2301 100644 --- a/mesa/__init__.py +++ b/mesa/__init__.py @@ -5,13 +5,13 @@ import datetime +import mesa.experimental as experimental import mesa.space as space import mesa.time as time from mesa.agent import Agent from mesa.batchrunner import batch_run from mesa.datacollection import DataCollector from mesa.model import Model -import mesa.experimental as experimental __all__ = [ "Model",