mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-14 20:26:13 +00:00
Use module-relative imports
This commit is contained in:
parent
086a704f24
commit
53c887d354
53 changed files with 166 additions and 195 deletions
|
@ -8,14 +8,12 @@ import datetime
|
|||
|
||||
from kodi_six import xbmc
|
||||
|
||||
import downloader as server
|
||||
import helper.xmls as xmls
|
||||
from objects import Movies, TVShows, MusicVideos, Music
|
||||
from database import Database, get_sync, save_sync, jellyfin_db
|
||||
from helper import translate, settings, window, progress, dialog
|
||||
from helper.utils import get_screensaver, set_screensaver
|
||||
from helper import LazyLogger
|
||||
from helper.exceptions import LibraryException, PathValidationException
|
||||
from . import downloader as server
|
||||
from .objects import Movies, TVShows, MusicVideos, Music
|
||||
from .database import Database, get_sync, save_sync, jellyfin_db
|
||||
from .helper import translate, settings, window, progress, dialog, LazyLogger, xmls
|
||||
from .helper.utils import get_screensaver, set_screensaver
|
||||
from .helper.exceptions import LibraryException, PathValidationException
|
||||
|
||||
##################################################################################################
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue