Skip to content

Commit

Permalink
leave imports alone
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Feb 7, 2024
1 parent 010ce9a commit e79ef17
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions ovos_workshop/skills/common_play.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
import os
from inspect import signature
from ovos_bus_client import Message
from ovos_classifiers.skovos.features import KeywordFeatures
from ovos_config.locations import get_xdg_cache_save_path
from ovos_utils import camel_case_split
from ovos_utils.log import LOG
# backwards compat imports, do not delete, skills import from here
from ovos_utils.ocp import MediaType, PlayerState
from threading import Event
from typing import List

from ovos_utils import camel_case_split
from ovos_utils.log import LOG

from ovos_bus_client import Message
from ovos_classifiers.skovos.features import KeywordFeatures
from ovos_config.locations import get_xdg_cache_save_path
from ovos_workshop.skills.ovos import OVOSSkill

# backwards compat imports, do not delete, skills import from here
from ovos_workshop.decorators.ocp import ocp_play, ocp_next, ocp_pause, ocp_resume, ocp_search, \
ocp_previous, ocp_featured_media
from ovos_utils.ocp import MediaType, MediaState, MatchConfidence, \
PlaybackType, PlaybackMode, PlayerState, LoopState, TrackState


def get_non_properties(obj):
"""Get attibutes that are not properties from object.
Expand Down

0 comments on commit e79ef17

Please sign in to comment.