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
d9c61a37
Unverified
Commit
d9c61a37
authored
5 months ago
by
epenet
Committed by
GitHub
5 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Use new reauth helpers in xiaomi_ble (#128827)
parent
5f662988
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/xiaomi_ble/config_flow.py
+5
-8
5 additions, 8 deletions
homeassistant/components/xiaomi_ble/config_flow.py
with
5 additions
and
8 deletions
homeassistant/components/xiaomi_ble/config_flow.py
+
5
−
8
View file @
d9c61a37
...
...
@@ -17,7 +17,7 @@ from homeassistant.components.bluetooth import (
async_discovered_service_info
,
async_process_advertisements
,
)
from
homeassistant.config_entries
import
ConfigFlow
,
ConfigFlowResult
from
homeassistant.config_entries
import
SOURCE_REAUTH
,
ConfigFlow
,
ConfigFlowResult
from
homeassistant.const
import
CONF_ADDRESS
from
.const
import
DOMAIN
...
...
@@ -264,9 +264,6 @@ class XiaomiConfigFlow(ConfigFlow, domain=DOMAIN):
self
,
entry_data
:
Mapping
[
str
,
Any
]
)
->
ConfigFlowResult
:
"""
Handle a flow initialized by a reauth event.
"""
entry
=
self
.
hass
.
config_entries
.
async_get_entry
(
self
.
context
[
"
entry_id
"
])
assert
entry
is
not
None
device
:
DeviceData
=
entry_data
[
"
device
"
]
self
.
_discovered_device
=
device
...
...
@@ -289,10 +286,10 @@ class XiaomiConfigFlow(ConfigFlow, domain=DOMAIN):
if
bindkey
:
data
[
"
bindkey
"
]
=
bindkey
if
entry_id
:
=
self
.
context
.
get
(
"
entry_id
"
)
:
entry
=
self
.
hass
.
config_entries
.
async_get_entry
(
entry_id
)
assert
entry
is
not
None
return
self
.
async_update_reload_and_abort
(
entry
,
data
=
data
)
if
self
.
source
==
SOURCE_REAUTH
:
return
self
.
async_update_reload_and_abort
(
self
.
_get_reauth_entry
(),
data
=
data
)
return
self
.
async_create_entry
(
title
=
self
.
context
[
"
title_placeholders
"
][
"
name
"
],
...
...
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