Skip to content

Commit

Permalink
another test
Browse files Browse the repository at this point in the history
  • Loading branch information
quaquel committed Sep 14, 2024
1 parent 486a3e3 commit 06d3259
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions mesa/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ def __init__(self, *args, seed=None, **kwargs):
start the model. Always start with super().__init__() to initialize the
model object properly.
"""
print(args)
print(kwargs)
super().__init__(*args, **kwargs)
self.running = True
self.schedule = None
Expand Down
1 change: 0 additions & 1 deletion tests/test_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ def model_stage(self):
def test_some_model():
print(inspect.getsource(Model))

some_model = SomeModel()
some_model = SomeModel(5)
some_model = SomeModel(5, seed=10)
some_model = SomeModel(5, some_other_argument=10)
Expand Down

0 comments on commit 06d3259

Please sign in to comment.