Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
f4309dfc
Commit
f4309dfc
authored
5 years ago
by
Fabian Affolter
Committed by
Sebastian Muszynski
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add missing attribution (#22964)
parent
69127114
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
homeassistant/components/london_underground/sensor.py
+13
-12
13 additions, 12 deletions
homeassistant/components/london_underground/sensor.py
with
13 additions
and
12 deletions
homeassistant/components/london_underground/sensor.py
+
13
−
12
View file @
f4309dfc
"""
Sensor for checking the status of London Underground tube lines.
"""
import
logging
from
datetime
import
timedelta
import
logging
import
voluptuous
as
vol
import
homeassistant.helpers.config_validation
as
cv
from
homeassistant.components.sensor
import
PLATFORM_SCHEMA
from
homeassistant.const
import
ATTR_ATTRIBUTION
import
homeassistant.helpers.config_validation
as
cv
from
homeassistant.helpers.entity
import
Entity
REQUIREMENTS
=
[
'
london-tube-status==0.2
'
]
...
...
@@ -16,6 +17,8 @@ ATTRIBUTION = "Powered by TfL Open Data"
CONF_LINE
=
'
line
'
ICON
=
'
mdi:subway
'
SCAN_INTERVAL
=
timedelta
(
seconds
=
30
)
TUBE_LINES
=
[
...
...
@@ -54,16 +57,15 @@ def setup_platform(hass, config, add_entities, discovery_info=None):
class
LondonTubeSensor
(
Entity
):
"""
Sensor that reads the status of a line from TubeData.
"""
ICON
=
'
mdi:subway
'
"""
Sensor that reads the status of a line from Tube Data.
"""
def
__init__
(
self
,
name
,
data
):
"""
Initialize the sensor.
"""
self
.
_name
=
name
"""
Initialize the London Underground sensor.
"""
self
.
_data
=
data
self
.
_state
=
None
self
.
_description
=
None
self
.
_name
=
name
self
.
_state
=
None
self
.
attrs
=
{
ATTR_ATTRIBUTION
:
ATTRIBUTION
}
@property
def
name
(
self
):
...
...
@@ -78,14 +80,13 @@ class LondonTubeSensor(Entity):
@property
def
icon
(
self
):
"""
Icon to use in the frontend, if any.
"""
return
self
.
ICON
return
ICON
@property
def
device_state_attributes
(
self
):
"""
Return other details about the sensor state.
"""
attrs
=
{}
attrs
[
'
Description
'
]
=
self
.
_description
return
attrs
self
.
attrs
[
'
Description
'
]
=
self
.
_description
return
self
.
attrs
def
update
(
self
):
"""
Update the sensor.
"""
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment