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
18933df9
Unverified
Commit
18933df9
authored
2 years ago
by
Martin Hjelmare
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Clean dead code from matter (#90369)
parent
f84651b1
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/matter/models.py
+2
-15
2 additions, 15 deletions
homeassistant/components/matter/models.py
with
2 additions
and
15 deletions
homeassistant/components/matter/models.py
+
2
−
15
View file @
18933df9
...
...
@@ -2,8 +2,8 @@
from
__future__
import
annotations
from
collections.abc
import
Callable
from
dataclasses
import
asdict
,
dataclass
from
typing
import
TYPE_CHECKING
,
Any
from
dataclasses
import
dataclass
from
typing
import
Any
from
chip.clusters
import
Objects
as
clusters
from
chip.clusters.Objects
import
ClusterAttributeDescriptor
...
...
@@ -13,19 +13,6 @@ from matter_server.client.models.node import MatterEndpoint
from
homeassistant.const
import
Platform
from
homeassistant.helpers.entity
import
EntityDescription
if
TYPE_CHECKING
:
from
_typeshed
import
DataclassInstance
class
DataclassMustHaveAtLeastOne
:
"""
A dataclass that must have at least one input parameter that is not None.
"""
def
__post_init__
(
self
:
DataclassInstance
)
->
None
:
"""
Post dataclass initialization.
"""
if
all
(
val
is
None
for
val
in
asdict
(
self
).
values
()):
raise
ValueError
(
"
At least one input parameter must not be None
"
)
SensorValueTypes
=
type
[
clusters
.
uint
|
int
|
clusters
.
Nullable
|
clusters
.
float32
|
float
]
...
...
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