mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-12-12 18:13:21 +00:00
Correct logic errors introduced in 00765c0a, fix flake8 except F841
This commit is contained in:
parent
49cfb6cb51
commit
d28c9a3ac8
34 changed files with 42 additions and 69 deletions
|
|
@ -2,22 +2,21 @@
|
|||
|
||||
#################################################################################################
|
||||
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
from uuid import uuid4
|
||||
import collections
|
||||
|
||||
import xbmc
|
||||
import xbmcvfs
|
||||
|
||||
import api
|
||||
import database
|
||||
import client
|
||||
import collections
|
||||
import requests
|
||||
from . import _, settings, window, dialog
|
||||
from downloader import TheVoid
|
||||
|
||||
from . import _, settings, window, dialog
|
||||
|
||||
#################################################################################################
|
||||
|
||||
LOG = logging.getLogger("JELLYFIN." + __name__)
|
||||
|
|
|
|||
|
|
@ -2,9 +2,7 @@
|
|||
|
||||
##################################################################################################
|
||||
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
|
||||
import xbmc
|
||||
import xbmcaddon
|
||||
|
|
|
|||
|
|
@ -12,13 +12,14 @@ import urllib
|
|||
from uuid import uuid4
|
||||
from distutils.version import LooseVersion
|
||||
|
||||
from dateutil import tz, parser
|
||||
|
||||
import xbmc
|
||||
import xbmcaddon
|
||||
import xbmcgui
|
||||
import xbmcvfs
|
||||
|
||||
from . import _
|
||||
from dateutil import tz, parser
|
||||
from .translate import _
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
|||
|
|
@ -6,8 +6,9 @@ import logging
|
|||
|
||||
import xbmcgui
|
||||
|
||||
from . import _, LibraryException
|
||||
from utils import should_stop
|
||||
from .utils import should_stop
|
||||
from .exceptions import LibraryException
|
||||
from .translate import _
|
||||
|
||||
#################################################################################################
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
#################################################################################################
|
||||
|
||||
import json
|
||||
import logging
|
||||
import os
|
||||
import xml.etree.ElementTree as etree
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue