* strict typing * Detail implication * adds newline * don't change indenting * really dont change indenting * Update homeassistant/components/bayesian/binary_sensor.py Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> * typing in async_setup_platform() + remove arg * less ambiguity * mypy thinks Literal[False] otherwise * clearer log * don't use `and` assignments * observations not values * clarify can be None * observation can't be none * assert we have at least one * make it clearer where we're using UUIDs * remove unnecessary bool Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> * Unnecessary None handling Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> * Better type setting Co-authored-by: epenet <6771947+epenet@users.noreply.github.com> * Reccomended changes. * remove if statement not needed * Not strict until _TrackTemplateResultInfo fixed Co-authored-by: epenet <6771947+epenet@users.noreply.github.com>
44 lines
1.6 KiB
Python
44 lines
1.6 KiB
Python
"""Helpers for generating repairs."""
|
|
from __future__ import annotations
|
|
|
|
from homeassistant.core import HomeAssistant
|
|
from homeassistant.helpers import issue_registry
|
|
|
|
from . import DOMAIN
|
|
from .helpers import Observation
|
|
|
|
|
|
def raise_mirrored_entries(
|
|
hass: HomeAssistant, observations: list[Observation], text: str = ""
|
|
) -> None:
|
|
"""If there are mirrored entries, the user is probably using a workaround for a patched bug."""
|
|
if len(observations) != 2:
|
|
return
|
|
if observations[0].is_mirror(observations[1]):
|
|
issue_registry.async_create_issue(
|
|
hass,
|
|
DOMAIN,
|
|
"mirrored_entry/" + text,
|
|
breaks_in_ha_version="2022.10.0",
|
|
is_fixable=False,
|
|
severity=issue_registry.IssueSeverity.WARNING,
|
|
translation_key="manual_migration",
|
|
translation_placeholders={"entity": text},
|
|
learn_more_url="https://github.com/home-assistant/core/pull/67631",
|
|
)
|
|
|
|
|
|
# Should deprecate in some future version (2022.10 at time of writing) & make prob_given_false required in schemas.
|
|
def raise_no_prob_given_false(hass: HomeAssistant, text: str) -> None:
|
|
"""In previous 2022.9 and earlier, prob_given_false was optional and had a default version."""
|
|
issue_registry.async_create_issue(
|
|
hass,
|
|
DOMAIN,
|
|
f"no_prob_given_false/{text}",
|
|
breaks_in_ha_version="2022.10.0",
|
|
is_fixable=False,
|
|
severity=issue_registry.IssueSeverity.ERROR,
|
|
translation_key="no_prob_given_false",
|
|
translation_placeholders={"entity": text},
|
|
learn_more_url="https://github.com/home-assistant/core/pull/67631",
|
|
)
|