mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-05 15:56:14 +00:00
Pylint (#69)
This commit is contained in:
parent
c124fbff3f
commit
6ad3a548f8
8 changed files with 41 additions and 54 deletions
|
@ -8,7 +8,6 @@ from ntpath import dirname
|
|||
|
||||
import api
|
||||
import embydb_functions as embydb
|
||||
import kodidb_functions as kodidb
|
||||
import _kodi_tvshows
|
||||
from _common import Items
|
||||
from utils import window, settings, language as lang, catch_except
|
||||
|
@ -796,14 +795,14 @@ class TVShows(Items):
|
|||
log.info("Deleted %s: %s from kodi database", mediatype, itemid)
|
||||
|
||||
def removeShow(self, kodiid):
|
||||
|
||||
|
||||
kodicursor = self.kodicursor
|
||||
self.artwork.delete_artwork(kodiid, "tvshow", kodicursor)
|
||||
self.kodi_db.remove_tvshow(kodiid)
|
||||
log.debug("Removed tvshow: %s", kodiid)
|
||||
|
||||
def removeSeason(self, kodiid):
|
||||
|
||||
|
||||
kodicursor = self.kodicursor
|
||||
|
||||
self.artwork.delete_artwork(kodiid, "season", kodicursor)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue