Skip to content

Commit

Permalink
Add is_intent kwarg to MycroftSkill class to resolve errors
Browse files Browse the repository at this point in the history
  • Loading branch information
NeonDaniel committed May 31, 2024
1 parent dab4956 commit 19e35f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ovos_workshop/skills/mycroft_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def _init_settings(self):

# patched due to functional (internal) differences under mycroft-core
def __on_end_classic(self, message: Message, handler_info: str,
skill_data: dict):
skill_data: dict, is_intent=False):
# mycroft-core style settings
if self.settings != self._initial_settings:
try:
Expand All @@ -222,7 +222,7 @@ def __on_end_classic(self, message: Message, handler_info: str,

@backwards_compat(classic_core=__on_end_classic)
def _on_event_end(self, message: Message, handler_info: str,
skill_data: dict):
skill_data: dict, is_intent=False):
"""
Store settings and indicate that the skill handler has completed
"""
Expand Down

0 comments on commit 19e35f0

Please sign in to comment.