@@ -252,18 +252,19 @@ def wait(self,
252252 return self ._client ._call_sync (
253253 self ._client .wait (order_id , state , delay , max_attempts , callback ))
254254
255- def list_orders (self ,
256- state : Optional [str ] = None ,
257- limit : int = 100 ,
258- source_type : Optional [str ] = None ,
259- name : Optional [str ] = None ,
260- name__contains : Optional [str ] = None ,
261- created_on : Optional [str ] = None ,
262- last_modified : Optional [str ] = None ,
263- hosting : Optional [bool ] = None ,
264- destination_ref : Optional [str ] = None ,
265- sort_by : Optional [str ] = None ,
266- user_id : Optional [Union [str , int ]] = None ) -> Iterator [dict ]:
255+ def list_orders (
256+ self ,
257+ state : Optional [str ] = None ,
258+ limit : int = 100 ,
259+ source_type : Optional [str ] = None ,
260+ name : Optional [str ] = None ,
261+ name__contains : Optional [str ] = None ,
262+ created_on : Optional [str ] = None ,
263+ last_modified : Optional [str ] = None ,
264+ hosting : Optional [bool ] = None ,
265+ destination_ref : Optional [str ] = None ,
266+ sort_by : Optional [str ] = None ,
267+ user_id : Optional [Union [str , int ]] = None ) -> Iterator [dict ]:
267268 """Iterate over the list of stored orders.
268269
269270 By default, order descriptions are sorted by creation date with the last created
0 commit comments