no log: update supersubtitles.py comments

This commit is contained in:
Vitiko 2022-04-07 22:18:22 -04:00
parent 7040fbc071
commit 4c063bc682
1 changed files with 5 additions and 5 deletions

View File

@ -391,8 +391,8 @@ class SuperSubtitlesProvider(Provider, ProviderSubtitleArchiveMixin):
results = None
'''
The result will be a JSON like this:
[{
In order to work, the result should be a JSON like this:
{
"10": {
"language":"Angol",
"nev":"The Flash (Season 5) (1080p)",
@ -404,14 +404,14 @@ class SuperSubtitlesProvider(Provider, ProviderSubtitleArchiveMixin):
"feltolto":"J1GG4",
"pontos_talalat":"111",
"evadpakk":"1"
}
},...]
}, ...
}
'''
subtitle_list = {}
season_pack_list = {}
# Check the results:
# Check the results. If a list or a Nonetype is returned, ignore it:
if results and not isinstance(results, list):
for result in results.values():
'''