mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-05-19 07:45:07 +00:00
Fix linting, flake8 and sonarcloud issues
This commit is contained in:
parent
87af711c94
commit
3f63e7c213
27 changed files with 162 additions and 169 deletions
|
@ -86,9 +86,7 @@ class Objects(object):
|
|||
|
||||
for d in self.__recursiveloop__(obj, obj_param):
|
||||
|
||||
if obj_filters and self.__filters__(d, obj_filters):
|
||||
result.append(d)
|
||||
elif not obj_filters:
|
||||
if not obj_filters or self.__filters__(d, obj_filters):
|
||||
result.append(d)
|
||||
|
||||
obj = result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue