mirror of
https://github.com/home-assistant/core.git
synced 2026-08-24 10:13:52 -05:00
W7434
This commit is contained in:
+11
-7
@@ -28,14 +28,18 @@ class HassEnforceConfigEntryStepIdMatchMethodChecker(BaseChecker):
|
||||
name = "home_assistant_enforce_config_entry_step_id_match_method"
|
||||
priority = -1
|
||||
msgs = {
|
||||
"W7431": (
|
||||
"The step_id '%s' does not match the method name '%s'; "
|
||||
"the step_id should match the method name after"
|
||||
" removing the 'async_step_' prefix.",
|
||||
"W7434": (
|
||||
(
|
||||
"The step_id '%s' does not match the method name '%s'; "
|
||||
"the step_id should match the method name after"
|
||||
" removing the 'async_step_' prefix."
|
||||
),
|
||||
"home-assistant-step_id-match-method",
|
||||
"Used when the step_id does not match the method name. "
|
||||
"The step_id should match the method name after removing the "
|
||||
"'async_step_' prefix. ",
|
||||
(
|
||||
"Used when the step_id does not match the method name. "
|
||||
"The step_id should match the method name after removing the "
|
||||
"'async_step_' prefix. "
|
||||
),
|
||||
),
|
||||
}
|
||||
options = ()
|
||||
|
||||
Reference in New Issue
Block a user