You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace get_agents_of_type method with agents_by_type property (#190)
The Model method `get_agents_of_type()` is replaced by the `agents_by_type` property, which directly returns the dict.
Instead of using:
```Python
model.get_agents_of_type(Wolf)
```
You should now use:
```Python
model.agents_by_type[Wolf]
```
0 commit comments