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
faf4ad07
Unverified
Commit
faf4ad07
authored
1 month ago
by
Michael
Committed by
GitHub
1 month ago
Browse files
Options
Downloads
Patches
Plain Diff
Explicitly pass in the config_entry in lametric coordinator (#138120)
explicitly pass in the config_entry in coordinator
parent
9e7f8b7b
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/lametric/coordinator.py
+3
-2
3 additions, 2 deletions
homeassistant/components/lametric/coordinator.py
with
3 additions
and
2 deletions
homeassistant/components/lametric/coordinator.py
+
3
−
2
View file @
faf4ad07
...
...
@@ -21,14 +21,15 @@ class LaMetricDataUpdateCoordinator(DataUpdateCoordinator[Device]):
def
__init__
(
self
,
hass
:
HomeAssistant
,
entry
:
ConfigEntry
)
->
None
:
"""
Initialize the LaMatric coordinator.
"""
self
.
config_entry
=
entry
self
.
lametric
=
LaMetricDevice
(
host
=
entry
.
data
[
CONF_HOST
],
api_key
=
entry
.
data
[
CONF_API_KEY
],
session
=
async_get_clientsession
(
hass
),
)
super
().
__init__
(
hass
,
LOGGER
,
name
=
DOMAIN
,
update_interval
=
SCAN_INTERVAL
)
super
().
__init__
(
hass
,
LOGGER
,
config_entry
=
entry
,
name
=
DOMAIN
,
update_interval
=
SCAN_INTERVAL
)
async
def
_async_update_data
(
self
)
->
Device
:
"""
Fetch device information of the LaMetric 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