mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Remove Core folder
This commit is contained in:
parent
84b8093171
commit
7e8f34401d
13 changed files with 12 additions and 12 deletions
|
@ -12,8 +12,8 @@ from database import get_credentials, save_credentials
|
||||||
from dialogs import ServerConnect, UsersConnect, LoginManual, ServerManual
|
from dialogs import ServerConnect, UsersConnect, LoginManual, ServerManual
|
||||||
from helper import settings, addon_id, event, api, window
|
from helper import settings, addon_id, event, api, window
|
||||||
from jellyfin import Jellyfin
|
from jellyfin import Jellyfin
|
||||||
from jellyfin.core.connection_manager import CONNECTION_STATE
|
from jellyfin.connection_manager import CONNECTION_STATE
|
||||||
from jellyfin.core.exceptions import HTTPException
|
from jellyfin.exceptions import HTTPException
|
||||||
|
|
||||||
##################################################################################################
|
##################################################################################################
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import xbmc
|
||||||
import xbmcgui
|
import xbmcgui
|
||||||
|
|
||||||
from helper import _
|
from helper import _
|
||||||
from jellyfin.core.connection_manager import CONNECTION_STATE
|
from jellyfin.connection_manager import CONNECTION_STATE
|
||||||
|
|
||||||
##################################################################################################
|
##################################################################################################
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ import xbmcgui
|
||||||
import xbmcaddon
|
import xbmcaddon
|
||||||
|
|
||||||
from helper import _, addon_id
|
from helper import _, addon_id
|
||||||
from jellyfin.core.connection_manager import CONNECTION_STATE
|
from jellyfin.connection_manager import CONNECTION_STATE
|
||||||
|
|
||||||
##################################################################################################
|
##################################################################################################
|
||||||
|
|
||||||
|
|
|
@ -10,8 +10,8 @@ import xbmc
|
||||||
import requests
|
import requests
|
||||||
from helper import settings, stop, event, window, create_id
|
from helper import settings, stop, event, window, create_id
|
||||||
from jellyfin import Jellyfin
|
from jellyfin import Jellyfin
|
||||||
from jellyfin.core import api
|
from jellyfin import api
|
||||||
from jellyfin.core.exceptions import HTTPException
|
from jellyfin.exceptions import HTTPException
|
||||||
|
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
|
|
|
@ -4,11 +4,11 @@
|
||||||
|
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
import core.api as api
|
import api
|
||||||
from core.configuration import Config
|
from configuration import Config
|
||||||
from core.http import HTTP
|
from http import HTTP
|
||||||
from core.ws_client import WSClient
|
from ws_client import WSClient
|
||||||
from core.connection_manager import ConnectionManager, CONNECTION_STATE
|
from connection_manager import ConnectionManager, CONNECTION_STATE
|
||||||
|
|
||||||
#################################################################################################
|
#################################################################################################
|
||||||
|
|
||||||
|
|
|
@ -8,7 +8,7 @@ import threading
|
||||||
|
|
||||||
import xbmc
|
import xbmc
|
||||||
|
|
||||||
from .. import websocket
|
import websocket
|
||||||
|
|
||||||
##################################################################################################
|
##################################################################################################
|
||||||
|
|
Loading…
Reference in a new issue