From e23972a4571a109d1202c3043488e9748c2534ce Mon Sep 17 00:00:00 2001 From: rht Date: Sat, 14 Sep 2024 16:13:19 -0400 Subject: [PATCH] Ensure object.__init__ has no other argument --- mesa/model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesa/model.py b/mesa/model.py index 072d816897b..a88f1dbbb19 100644 --- a/mesa/model.py +++ b/mesa/model.py @@ -59,7 +59,7 @@ def __init__(self, *args: Any, seed: float | None = None, **kwargs: Any) -> None start the model. Always start with super().__init__() to initialize the model object properly. """ - super().__init__(*args, **kwargs) + super().__init__() self.running = True self.schedule = None self.steps: int = 0