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

pull/61241/head
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
1 changed files with 1 additions and 1 deletions

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: