Skip to content

Commit

Permalink
fix agents return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Corvince committed Jul 14, 2020
1 parent 9715ff8 commit 311677b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mesa_geo/geospace.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def update_bbox(self, bbox=None):

@property
def agents(self):
return self.idx.agents.values()
return list(self.idx.agents.values())

@property
def __geo_interface__(self):
Expand Down

0 comments on commit 311677b

Please sign in to comment.