mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Remove dead code
Fixes sonarcloud lint
This commit is contained in:
parent
6413f441ac
commit
1910de8639
1 changed files with 1 additions and 3 deletions
|
@ -126,7 +126,7 @@ def get_episode_by_season(show_id, season_id):
|
||||||
yield items
|
yield items
|
||||||
|
|
||||||
|
|
||||||
def get_item_count(parent_id, item_type=None, params=None):
|
def get_item_count(parent_id, item_type=None):
|
||||||
|
|
||||||
url = "Users/{UserId}/Items"
|
url = "Users/{UserId}/Items"
|
||||||
|
|
||||||
|
@ -138,8 +138,6 @@ def get_item_count(parent_id, item_type=None, params=None):
|
||||||
"Recursive": True,
|
"Recursive": True,
|
||||||
"Limit": 1,
|
"Limit": 1,
|
||||||
}
|
}
|
||||||
if params:
|
|
||||||
query_params["params"].update(params)
|
|
||||||
|
|
||||||
result = _get(url, query_params)
|
result = _get(url, query_params)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue