Skip to content

Commit

Permalink
Update deprecated import to supported path
Browse files Browse the repository at this point in the history
Missed in #515
  • Loading branch information
NeonDaniel committed May 10, 2024
1 parent 5204dfd commit fa4c968
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions neon_utils/skills/neon_fallback_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
from ovos_utils.gui import is_gui_connected
from ovos_utils.log import LOG, log_deprecation, deprecated
from ovos_utils.skills import get_non_properties
from ovos_utils.skills.settings import save_settings
from ovos_utils.xdg_utils import xdg_cache_home
from ovos_workshop.skills import OVOSSkill
from ovos_workshop.skills.fallback import FallbackSkillV1
Expand All @@ -53,7 +52,8 @@
from neon_utils.file_utils import resolve_neon_resource_file
from neon_utils.location_utils import to_system_time
from neon_utils.message_utils import dig_for_message, resolve_message, get_message_user
from neon_utils.skills.neon_skill import CACHE_TIME_OFFSET, DEFAULT_SPEED_MODE, SPEED_MODE_EXTENSION_TIME, NeonSkill
from neon_utils.skills.neon_skill import CACHE_TIME_OFFSET, DEFAULT_SPEED_MODE, SPEED_MODE_EXTENSION_TIME, NeonSkill, \
save_settings
from neon_utils.user_utils import get_user_prefs


Expand Down
1 change: 1 addition & 0 deletions neon_utils/skills/neon_skill.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ def save_settings(skill_dir, skill_settings):
else:
LOG.info(f'Skill settings successfully saved to {settings_path}')


class NeonSkill(OVOSSkill):
def __init__(self, name=None, bus=None, **kwargs):
OVOSSkill.__init__(self, name, bus, **kwargs)
Expand Down

0 comments on commit fa4c968

Please sign in to comment.