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
2e225dfc
Unverified
Commit
2e225dfc
authored
6 months ago
by
epenet
Committed by
GitHub
6 months ago
Browse files
Options
Downloads
Patches
Plain Diff
Use _get_reauth/reconfigure_entry in pyload (#127304)
parent
409d7b36
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/pyload/config_flow.py
+4
-14
4 additions, 14 deletions
homeassistant/components/pyload/config_flow.py
with
4 additions
and
14 deletions
homeassistant/components/pyload/config_flow.py
+
4
−
14
View file @
2e225dfc
...
@@ -4,7 +4,7 @@ from __future__ import annotations
...
@@ -4,7 +4,7 @@ from __future__ import annotations
from
collections.abc
import
Mapping
from
collections.abc
import
Mapping
import
logging
import
logging
from
typing
import
TYPE_CHECKING
,
Any
from
typing
import
Any
from
aiohttp
import
CookieJar
from
aiohttp
import
CookieJar
from
pyloadapi.api
import
PyLoadAPI
from
pyloadapi.api
import
PyLoadAPI
...
@@ -101,7 +101,7 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
...
@@ -101,7 +101,7 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
"""
Handle a config flow for pyLoad.
"""
"""
Handle a config flow for pyLoad.
"""
VERSION
=
1
VERSION
=
1
config_entry
:
PyLoadConfigEntry
|
None
config_entry
:
PyLoadConfigEntry
async
def
async_step_user
(
async
def
async_step_user
(
self
,
user_input
:
dict
[
str
,
Any
]
|
None
=
None
self
,
user_input
:
dict
[
str
,
Any
]
|
None
=
None
...
@@ -156,9 +156,7 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
...
@@ -156,9 +156,7 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
self
,
entry_data
:
Mapping
[
str
,
Any
]
self
,
entry_data
:
Mapping
[
str
,
Any
]
)
->
ConfigFlowResult
:
)
->
ConfigFlowResult
:
"""
Perform reauth upon an API authentication error.
"""
"""
Perform reauth upon an API authentication error.
"""
self
.
config_entry
=
self
.
hass
.
config_entries
.
async_get_entry
(
self
.
config_entry
=
self
.
_get_reauth_entry
()
self
.
context
[
"
entry_id
"
]
)
return
await
self
.
async_step_reauth_confirm
()
return
await
self
.
async_step_reauth_confirm
()
async
def
async_step_reauth_confirm
(
async
def
async_step_reauth_confirm
(
...
@@ -167,9 +165,6 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
...
@@ -167,9 +165,6 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
"""
Dialog that informs the user that reauth is required.
"""
"""
Dialog that informs the user that reauth is required.
"""
errors
=
{}
errors
=
{}
if
TYPE_CHECKING
:
assert
self
.
config_entry
if
user_input
is
not
None
:
if
user_input
is
not
None
:
new_input
=
self
.
config_entry
.
data
|
user_input
new_input
=
self
.
config_entry
.
data
|
user_input
try
:
try
:
...
@@ -204,9 +199,7 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
...
@@ -204,9 +199,7 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
self
,
entry_data
:
Mapping
[
str
,
Any
]
self
,
entry_data
:
Mapping
[
str
,
Any
]
)
->
ConfigFlowResult
:
)
->
ConfigFlowResult
:
"""
Perform a reconfiguration.
"""
"""
Perform a reconfiguration.
"""
self
.
config_entry
=
self
.
hass
.
config_entries
.
async_get_entry
(
self
.
config_entry
=
self
.
_get_reconfigure_entry
()
self
.
context
[
"
entry_id
"
]
)
return
await
self
.
async_step_reconfigure_confirm
()
return
await
self
.
async_step_reconfigure_confirm
()
async
def
async_step_reconfigure_confirm
(
async
def
async_step_reconfigure_confirm
(
...
@@ -215,9 +208,6 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
...
@@ -215,9 +208,6 @@ class PyLoadConfigFlow(ConfigFlow, domain=DOMAIN):
"""
Handle the reconfiguration flow.
"""
"""
Handle the reconfiguration flow.
"""
errors
=
{}
errors
=
{}
if
TYPE_CHECKING
:
assert
self
.
config_entry
if
user_input
is
not
None
:
if
user_input
is
not
None
:
try
:
try
:
await
validate_input
(
self
.
hass
,
user_input
)
await
validate_input
(
self
.
hass
,
user_input
)
...
...
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