mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-12-13 02:23:18 +00:00
Use module-relative imports
This commit is contained in:
parent
086a704f24
commit
53c887d354
53 changed files with 166 additions and 195 deletions
|
|
@ -9,14 +9,14 @@ import threading
|
|||
|
||||
from kodi_six import xbmc
|
||||
|
||||
import connect
|
||||
import player
|
||||
from client import get_device_id
|
||||
from objects import PlaylistWorker, on_play, on_update, special_listener
|
||||
from helper import translate, settings, window, dialog, api, JSONRPC
|
||||
from helper.utils import JsonDebugPrinter
|
||||
from jellyfin import Jellyfin
|
||||
from helper import LazyLogger
|
||||
from . import connect
|
||||
from . import player
|
||||
from .client import get_device_id
|
||||
from .objects import PlaylistWorker, on_play, on_update, special_listener
|
||||
from .helper import translate, settings, window, dialog, api, JSONRPC
|
||||
from .helper.utils import JsonDebugPrinter
|
||||
from .jellyfin import Jellyfin
|
||||
from .helper import LazyLogger
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue