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 helper import settings, addon_id, event, api, window
|
||||
from jellyfin import Jellyfin
|
||||
from jellyfin.core.connection_manager import CONNECTION_STATE
|
||||
from jellyfin.core.exceptions import HTTPException
|
||||
from jellyfin.connection_manager import CONNECTION_STATE
|
||||
from jellyfin.exceptions import HTTPException
|
||||
|
||||
##################################################################################################
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import xbmc
|
|||
import xbmcgui
|
||||
|
||||
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
|
||||
|
||||
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
|
||||
from helper import settings, stop, event, window, create_id
|
||||
from jellyfin import Jellyfin
|
||||
from jellyfin.core import api
|
||||
from jellyfin.core.exceptions import HTTPException
|
||||
from jellyfin import api
|
||||
from jellyfin.exceptions import HTTPException
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
@ -4,11 +4,11 @@
|
|||
|
||||
import logging
|
||||
|
||||
import core.api as api
|
||||
from core.configuration import Config
|
||||
from core.http import HTTP
|
||||
from core.ws_client import WSClient
|
||||
from core.connection_manager import ConnectionManager, CONNECTION_STATE
|
||||
import api
|
||||
from configuration import Config
|
||||
from http import HTTP
|
||||
from ws_client import WSClient
|
||||
from connection_manager import ConnectionManager, CONNECTION_STATE
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ import threading
|
|||
|
||||
import xbmc
|
||||
|
||||
from .. import websocket
|
||||
import websocket
|
||||
|
||||
##################################################################################################
|
||||
|
Loading…
Reference in a new issue