mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-06 08:16:13 +00:00
Remove six: iteritems
This commit is contained in:
parent
0e80c7cbcc
commit
a00a1951cb
7 changed files with 11 additions and 15 deletions
|
@ -6,7 +6,7 @@ from __future__ import division, absolute_import, print_function, unicode_litera
|
|||
import json
|
||||
import os
|
||||
|
||||
from six import iteritems, ensure_text
|
||||
from six import ensure_text
|
||||
|
||||
from ..helper import LazyLogger, get_filesystem_encoding
|
||||
|
||||
|
@ -54,7 +54,7 @@ class Objects(object):
|
|||
|
||||
mapping = self.objects[mapping_name]
|
||||
|
||||
for key, value in iteritems(mapping):
|
||||
for key, value in mapping.items():
|
||||
|
||||
self.mapped_item[key] = None
|
||||
params = value.split(",")
|
||||
|
@ -151,7 +151,7 @@ class Objects(object):
|
|||
|
||||
result = False
|
||||
|
||||
for key, value in iteritems(filters):
|
||||
for key, value in filters.items():
|
||||
|
||||
inverse = False
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue