mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-20 23:20:31 +00:00
Pylint (#69)
This commit is contained in:
parent
c124fbff3f
commit
6ad3a548f8
8 changed files with 41 additions and 54 deletions
|
@ -267,7 +267,7 @@ class KodiMusic(KodiItems):
|
|||
VALUES (?, ?, ?, ?, ?)
|
||||
'''
|
||||
)
|
||||
self.cursor.execute(query, (albumid, args))
|
||||
self.cursor.execute(query, (args))
|
||||
|
||||
def add_single_14(self, *args):
|
||||
# TODO: Remove Helix code when Krypton is RC
|
||||
|
@ -278,7 +278,7 @@ class KodiMusic(KodiItems):
|
|||
VALUES (?, ?, ?, ?)
|
||||
'''
|
||||
)
|
||||
self.cursor.execute(query, (albumid, genre, year, dateadded))
|
||||
self.cursor.execute(query, (args))
|
||||
|
||||
def add_song(self, *args):
|
||||
query = (
|
||||
|
@ -313,7 +313,7 @@ class KodiMusic(KodiItems):
|
|||
VALUES (?, ?, ?, ?, ?)
|
||||
'''
|
||||
)
|
||||
kodicursor.execute(query, (kodi_id, song_id, 1, index, artist))
|
||||
self.cursor.execute(query, (kodi_id, song_id, 1, index, artist))
|
||||
else:
|
||||
query = (
|
||||
'''
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue