PyTrakt icon indicating copy to clipboard operation
PyTrakt copied to clipboard

TVShow().progress always return None

Open dimitricappelle opened this issue 4 years ago • 1 comments

When trying to get the collection progress for a TV Show I always get None as returned value. Tried TVShow("The Last Kingdom") and TVShow("Grey's Anatomy").

It seems that it always hits a StopIteration in core.py files (get)

try:
    return generator.send(json_data)
except StopIteration as e:
    return None

(https://trakt.docs.apiary.io/#reference/shows/collection-progress/get-show-collection-progress?console=1)

dimitricappelle avatar Apr 26 '21 12:04 dimitricappelle

Show exact code you were using

glensc avatar Jan 15 '22 21:01 glensc