Skip to content

Commit

Permalink
fix: don't respond to "is it easy to build"
Browse files Browse the repository at this point in the history
  • Loading branch information
mikejgray committed Sep 3, 2024
1 parent b63d161 commit faf6f44
Show file tree
Hide file tree
Showing 5 changed files with 521 additions and 368 deletions.
5 changes: 0 additions & 5 deletions neon_homeassistant_skill/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
from ovos_workshop.decorators import intent_handler
from ovos_workshop.skills import OVOSSkill

DEFAULT_SETTINGS: dict = {
"disable_intents": False,
}


class NeonHomeAssistantSkill(OVOSSkill):
"""Home Assistant skill for Neon OS. Requires the PHAL Home Assistant plugin."""
Expand Down Expand Up @@ -69,7 +65,6 @@ def initialize(self):
"ovos.phal.plugin.homeassistant.set.light.color.response",
self.handle_set_light_color_response,
)
self.settings.merge(DEFAULT_SETTINGS, new_only=True)
self.verbose = self.settings.get("verbose", True)
self.silent_entities = set(self.settings.get("silent_entities", []))
if self.disable_intents:
Expand Down
Loading

0 comments on commit faf6f44

Please sign in to comment.