Skip to content

Commit

Permalink
Ensure workday issues are not persistent (#119732)
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Jun 15, 2024
1 parent 3a705fd commit a4a8315
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions homeassistant/components/workday/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ async def _async_validate_country_and_province(
DOMAIN,
"bad_country",
is_fixable=True,
is_persistent=True,
is_persistent=False,
severity=IssueSeverity.ERROR,
translation_key="bad_country",
translation_placeholders={"title": entry.title},
Expand All @@ -59,7 +59,7 @@ async def _async_validate_country_and_province(
DOMAIN,
"bad_province",
is_fixable=True,
is_persistent=True,
is_persistent=False,
severity=IssueSeverity.ERROR,
translation_key="bad_province",
translation_placeholders={
Expand Down

0 comments on commit a4a8315

Please sign in to comment.