mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-07 00:16:57 +08:00
fix tmdbapis
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
from ..tmdb import TMDb
|
||||
|
||||
|
||||
class Review(TMDb):
|
||||
_urls = {
|
||||
"details": "/review/%s",
|
||||
}
|
||||
|
||||
def details(self, review_id):
|
||||
"""
|
||||
Get the primary person details by id.
|
||||
:param review_id: int
|
||||
:return:
|
||||
"""
|
||||
return self._request_obj(self._urls["details"] % review_id)
|
||||
Reference in New Issue
Block a user