Skip to content

Commit 985cc8f

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 34a1853 commit 985cc8f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

mesa/experimental/jupyter_viz.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,9 @@ def JupyterViz(
8888

8989
# 2. Set up Model
9090
def make_model():
91-
model = model_class.__new__(model_class, **model_parameters, seed=reactive_seed.value)
91+
model = model_class.__new__(
92+
model_class, **model_parameters, seed=reactive_seed.value
93+
)
9294
model.__init__(**model_parameters)
9395
current_step.value = 0
9496
return model

0 commit comments

Comments
 (0)