@@ -104,11 +104,8 @@ class Series_Episodes(TVDB):
104104 'summary' : '/{id}/episodes/summary' ,
105105 'episodes' : '/{id}/episodes' ,
106106 'query' : '/{id}/episodes/query' ,
107- 'queryparams ' : '/{id}/episodes/query/params'
107+ 'query_params ' : '/{id}/episodes/query/params'
108108 }
109- _PAGES = - 1
110- _PAGES_LIST = {}
111- _FILTERS = {}
112109
113110 def __init__ (self , id , language = '' , ** kwargs ):
114111 """
@@ -132,7 +129,10 @@ def __init__(self, id, language='', **kwargs):
132129 """
133130 super (Series_Episodes , self ).__init__ (id )
134131 self ._set_language (language )
132+ self ._FILTERS = {}
135133 self .update_filters (** kwargs )
134+ self ._PAGES = - 1
135+ self ._PAGES_LIST = {}
136136
137137 def update_filters (self , ** kwargs ):
138138 """
@@ -151,6 +151,8 @@ def update_filters(self, **kwargs):
151151 You can provide `imdbId` to get only episodes with the
152152 provided imdb id.
153153 """
154+ self ._PAGES = - 1
155+ self ._PAGES_LIST = {}
154156 self ._FILTERS = kwargs
155157
156158 def summary (self ):
@@ -264,9 +266,8 @@ class Series_Images(TVDB):
264266 _URLS = {
265267 'imagequery' : '/{id}/images/query' ,
266268 'summary' : '/{id}/images' ,
267- 'queryparams ' : '/{id}/images/query/params'
269+ 'query_params ' : '/{id}/images/query/params'
268270 }
269- _FILTERS = {}
270271
271272 def __init__ (self , id , language = '' , ** kwargs ):
272273 """
0 commit comments