Skip to content

Commit

Permalink
Small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
vingerha committed Dec 10, 2023
1 parent d5cd451 commit 457d83c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/gtfs2/gtfs_rt_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ def get_rt_vehicle_positions(self):
self.geojson = {"features": geojson_body, "type": "FeatureCollection"}

_LOGGER.debug("GTFS RT geojson: %s", json.dumps(self.geojson))
self._route_dir = self._route_id + "_" + self._direction
self._route_dir = str(self._route_id) + "_" + str(self._direction)
update_geojson(self)
return geojson_body

Expand Down

0 comments on commit 457d83c

Please sign in to comment.