Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Aug 18, 2024
1 parent 4bc91dc commit 1ce8fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesa/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1ce8fe7

Please sign in to comment.