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
aa30ac52
Unverified
Commit
aa30ac52
authored
6 years ago
by
David F. Mulcahey
Committed by
GitHub
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
prevent duplicate event channel registration (#21534)
parent
326513af
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
homeassistant/components/zha/core/device.py
+7
-5
7 additions, 5 deletions
homeassistant/components/zha/core/device.py
with
7 additions
and
5 deletions
homeassistant/components/zha/core/device.py
+
7
−
5
View file @
aa30ac52
...
...
@@ -49,8 +49,8 @@ class ZHADevice:
self
.
_model
=
zigpy_device
.
endpoints
[
ept_id
].
model
self
.
_zha_gateway
=
zha_gateway
self
.
cluster_channels
=
{}
self
.
_relay_channels
=
[]
self
.
_all_channels
=
[]
self
.
_relay_channels
=
{}
self
.
_all_channels
=
{}
self
.
_name
=
"
{} {}
"
.
format
(
self
.
manufacturer
,
self
.
model
...
...
@@ -126,7 +126,7 @@ class ZHADevice:
@property
def
all_channels
(
self
):
"""
Return cluster channels and relay channels for device.
"""
return
self
.
_all_channels
return
self
.
_all_channels
.
values
()
@property
def
available_signal
(
self
):
...
...
@@ -173,11 +173,13 @@ class ZHADevice:
if
cluster_channel
.
name
is
POWER_CONFIGURATION_CHANNEL
and
\
POWER_CONFIGURATION_CHANNEL
in
self
.
cluster_channels
:
return
self
.
_all_channels
.
append
(
cluster_channel
)
if
isinstance
(
cluster_channel
,
EventRelayChannel
):
self
.
_relay_channels
.
append
(
cluster_channel
)
self
.
_relay_channels
[
cluster_channel
.
unique_id
]
=
cluster_channel
self
.
_all_channels
[
cluster_channel
.
unique_id
]
=
cluster_channel
else
:
self
.
cluster_channels
[
cluster_channel
.
name
]
=
cluster_channel
self
.
_all_channels
[
cluster_channel
.
name
]
=
cluster_channel
async
def
async_configure
(
self
):
"""
Configure the device.
"""
...
...
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