Skip to content

Commit bc18a14

Browse files
Fix variable name for comparison methods in config flow
1 parent 507d26f commit bc18a14

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

custom_components/calendar_event/config_flow.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
DOMAIN,
2020
)
2121

22-
_MATCHING_CRITERIA = ["contains", "starts_with", "ends_with", "exactly"]
22+
_COMPARISON_METHODS = ["contains", "starts_with", "ends_with", "exactly"]
2323

2424
OPTIONS_SCHEMA = vol.Schema(
2525
{
@@ -31,7 +31,7 @@
3131
CONF_COMPARISON_METHOD, default="contains"
3232
): selector.SelectSelector(
3333
selector.SelectSelectorConfig(
34-
options=_MATCHING_CRITERIA,
34+
options=_COMPARISON_METHODS,
3535
mode="dropdown",
3636
translation_key=CONF_COMPARISON_METHOD,
3737
),

0 commit comments

Comments
 (0)