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 Mar 7, 2024
1 parent 34a1853 commit 985cc8f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mesa/experimental/jupyter_viz.py
Expand Up @@ -88,7 +88,9 @@ def JupyterViz(

# 2. Set up Model
def make_model():
model = model_class.__new__(model_class, **model_parameters, seed=reactive_seed.value)
model = model_class.__new__(
model_class, **model_parameters, seed=reactive_seed.value
)
model.__init__(**model_parameters)
current_step.value = 0
return model
Expand Down

0 comments on commit 985cc8f

Please sign in to comment.