diff --git a/mesa/model.py b/mesa/model.py index 4f3c74024a3..240970812f7 100644 --- a/mesa/model.py +++ b/mesa/model.py @@ -64,7 +64,7 @@ def __init__(self, *args: Any, **kwargs: Any) -> None: if self._seed is None: # We explicitly specify the seed here so that we know its value in # advance. - self._seed = random.random() # noqa: S311 + self._seed = random.random() self.random = random.Random(self._seed) self._steps: int = 0