Skip to content

Commit

Permalink
fix:standardize_lang
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 16, 2024
1 parent 60d6a52 commit 6c054ba
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ovos_workshop/skills/ovos.py
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ def __handle_stop(self, message):
sess = SessionManager.get(message)
try:
stopped = self.stop_session(sess) or self.stop()
print(f"{self.skill_id} stopped: {stopped}")
LOG.debug(f"{self.skill_id} stopped: {stopped}")
if stopped:
self.bus.emit(message.reply("mycroft.stop.handled",
{"by": "skill:" + self.skill_id}))
Expand Down Expand Up @@ -2479,7 +2479,6 @@ def __init__(self, skill: OVOSSkill):
bus = skill.bus
config = skill.config_core.get('gui')
ui_directories = get_ui_directories(skill.root_dir)
print(666, ui_directories)
GUIInterface.__init__(self, skill_id=skill_id, bus=bus, config=config,
ui_directories=ui_directories)

0 comments on commit 6c054ba

Please sign in to comment.