Remove obsolete imports

This commit is contained in:
croneter 2020-12-27 13:20:42 +01:00
parent 8f5c64b33e
commit 427fc47e7a
3 changed files with 2 additions and 3 deletions

View file

@ -9,7 +9,7 @@ from logging import getLogger
from .common import Playlist, PlaylistError from .common import Playlist, PlaylistError
from ..plex_db import PlexDB from ..plex_db import PlexDB
from ..kodi_db import kodiid_from_filename from ..kodi_db import kodiid_from_filename
from .. import path_ops, utils, variables as v from .. import utils, variables as v
############################################################################### ###############################################################################
LOG = getLogger('PLEX.playlists.db') LOG = getLogger('PLEX.playlists.db')

View file

@ -47,7 +47,7 @@ import logging
import traceback import traceback
import sys import sys
from . import utils, app from . import app
############################################################################### ###############################################################################

View file

@ -8,7 +8,6 @@
from logging import getLogger from logging import getLogger
import re import re
import socket import socket
import urllib.request, urllib.parse, urllib.error
import xbmc import xbmc