Remove duplicate information in delijn sensor (#36276)

This commit is contained in:
Emilv2 2020-05-31 17:02:56 +02:00 committed by GitHub
parent cd054a9579
commit 0ae23fa166
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View File

@ -87,7 +87,7 @@ homeassistant/components/cups/* @fabaff
homeassistant/components/daikin/* @fredrike
homeassistant/components/darksky/* @fabaff
homeassistant/components/deconz/* @Kane610
homeassistant/components/delijn/* @bollewolle
homeassistant/components/delijn/* @bollewolle @Emilv2
homeassistant/components/demo/* @home-assistant/core
homeassistant/components/denonavr/* @scarface-4711 @starkillerOG
homeassistant/components/derivative/* @afaucogney

View File

@ -2,6 +2,6 @@
"domain": "delijn",
"name": "De Lijn",
"documentation": "https://www.home-assistant.io/integrations/delijn",
"codeowners": ["@bollewolle"],
"codeowners": ["@bollewolle", "@Emilv2"],
"requirements": ["pydelijn==0.6.0"]
}

View File

@ -81,8 +81,6 @@ class DeLijnPublicTransportSensor(Entity):
return
self._attributes["stopname"] = self._name
for passage in self.line.passages:
passage["stopname"] = self._name
try:
first = self.line.passages[0]