From 8b9048786e83a80f7f6a3fb033593ba55be99080 Mon Sep 17 00:00:00 2001 From: rht Date: Sat, 6 Jan 2024 19:54:18 -0500 Subject: [PATCH] Fix RUF001 lint issue --- mesa/agent.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesa/agent.py b/mesa/agent.py index db452dbd6c5..b1f18b022c1 100644 --- a/mesa/agent.py +++ b/mesa/agent.py @@ -56,7 +56,7 @@ def __init__(self, unique_id: int, model: Model) -> None: self.model.agentset_experimental_warning_given = False warnings.warn( - "The Mesa Model class wasn’t initialized. In the future, you need to explicitly initialize the Model by calling super().__init__() on initialization.", + "The Mesa Model class wasn't initialized. In the future, you need to explicitly initialize the Model by calling super().__init__() on initialization.", FutureWarning, stacklevel=2, )