diff --git a/homeassistant/components/gtfs/sensor.py b/homeassistant/components/gtfs/sensor.py index 9a622e417ad..367a45aa073 100644 --- a/homeassistant/components/gtfs/sensor.py +++ b/homeassistant/components/gtfs/sensor.py @@ -619,7 +619,7 @@ class GTFSDepartureSensor(SensorEntity): if not self._departure: self._state = None else: - self._state = dt_util.as_utc(self._departure["departure_time"]) + self._state = self._departure["departure_time"] # Fetch trip and route details once, unless updated if not self._departure: