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
92628ea0
Unverified
Commit
92628ea0
authored
1 year ago
by
Joost Lekkerkerker
Committed by
GitHub
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
Use shorthand attributes in Starline (#99882)
parent
4e826f17
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
homeassistant/components/starline/entity.py
+2
-10
2 additions, 10 deletions
homeassistant/components/starline/entity.py
homeassistant/components/starline/switch.py
+2
-5
2 additions, 5 deletions
homeassistant/components/starline/switch.py
with
4 additions
and
15 deletions
homeassistant/components/starline/entity.py
+
2
−
10
View file @
92628ea0
...
...
@@ -21,6 +21,8 @@ class StarlineEntity(Entity):
self
.
_account
=
account
self
.
_device
=
device
self
.
_key
=
key
self
.
_attr_unique_id
=
f
"
starline-
{
key
}
-
{
device
.
device_id
}
"
self
.
_attr_device_info
=
account
.
device_info
(
device
)
self
.
_unsubscribe_api
:
Callable
|
None
=
None
@property
...
...
@@ -28,16 +30,6 @@ class StarlineEntity(Entity):
"""
Return True if entity is available.
"""
return
self
.
_account
.
api
.
available
@property
def
unique_id
(
self
):
"""
Return the unique ID of the entity.
"""
return
f
"
starline-
{
self
.
_key
}
-
{
self
.
_device
.
device_id
}
"
@property
def
device_info
(
self
):
"""
Return the device info.
"""
return
self
.
_account
.
device_info
(
self
.
_device
)
def
update
(
self
):
"""
Read new state data.
"""
self
.
schedule_update_ha_state
()
...
...
This diff is collapsed.
Click to expand it.
homeassistant/components/starline/switch.py
+
2
−
5
View file @
92628ea0
...
...
@@ -77,6 +77,8 @@ class StarlineSwitch(StarlineEntity, SwitchEntity):
entity_description
:
StarlineSwitchEntityDescription
_attr_assumed_state
=
True
def
__init__
(
self
,
account
:
StarlineAccount
,
...
...
@@ -108,11 +110,6 @@ class StarlineSwitch(StarlineEntity, SwitchEntity):
else
self
.
entity_description
.
icon_off
)
@property
def
assumed_state
(
self
):
"""
Return True if unable to access real state of the entity.
"""
return
True
@property
def
is_on
(
self
):
"""
Return True if entity is on.
"""
...
...
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