don't convert GTFS timestamp to UTC in timestamp sensor (#61221)

This commit is contained in:
Paulus Schoutsen 2021-12-07 23:26:45 -08:00 committed by GitHub
parent a81026ea90
commit c8fbf4c339
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: