Skip to content

Commit

Permalink
bug/update_imports
Browse files Browse the repository at this point in the history
Moved to workshop.intents for ovos-utils >0.1.0
  • Loading branch information
builderjer committed Feb 10, 2024
1 parent a1b72bf commit c3128f9
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from ovos_utils import classproperty
from ovos_utils.log import LOG
from ovos_utils.intents import IntentBuilder
from ovos_workshop.intents import IntentBuilder
from ovos_utils.process_utils import RuntimeRequirements
from ovos_workshop.decorators import intent_handler
from ovos_workshop.skills import OVOSSkill
Expand Down Expand Up @@ -106,12 +106,9 @@ def _search_for_person(self, person):

def _create_dialog_list(self, dialog_list):
# create a list
# LOG.debug(f"Creating dialog list with: {dialog_list}")
i = []
for item in dialog_list:
# LOG.debug(f"item is: {item}")
i.append(item)
# LOG.debug(type(i))
dialog = ""
last_item = i.pop()
last_item = last_item.get("title", last_item.get("name"))
Expand Down

0 comments on commit c3128f9

Please sign in to comment.