Skip to content

Commit

Permalink
pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
azime committed Feb 5, 2024
1 parent 6ceb9e7 commit 81c3852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/jormungandr/jormungandr/street_network/geovelo.py
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ def is_reached_by_physical_mode(self, place):
return self.mode_weight_keys & self.get_physical_modes_uris(place)

def get_truncated_places_isochrone(self, places_isochrone):
return places_isochrone[:self.places_count]
return places_isochrone[: self.places_count]

def filter_places_isochrone(self, places_isochrone):
result = (p for p in places_isochrone if self.is_reached_by_physical_mode(p))
Expand Down

0 comments on commit 81c3852

Please sign in to comment.