File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
.generator/src/generator/templates Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -633,7 +633,7 @@ class AsyncApiClient(ApiClient):
633
633
host: Optional[str] = None,
634
634
check_type: Optional[bool] = None,
635
635
):
636
- params = pagination["endpoint"].get_pagination_params (pagination["kwargs"])
636
+ params = pagination["endpoint"].gather_params (pagination["kwargs"])
637
637
while True:
638
638
response = await self.call_api(
639
639
resource_path,
Original file line number Diff line number Diff line change @@ -631,7 +631,7 @@ async def call_api_paginated(
631
631
host : Optional [str ] = None ,
632
632
check_type : Optional [bool ] = None ,
633
633
):
634
- params = pagination ["endpoint" ].get_pagination_params (pagination ["kwargs" ])
634
+ params = pagination ["endpoint" ].gather_params (pagination ["kwargs" ])
635
635
while True :
636
636
response = await self .call_api (
637
637
resource_path ,
You can’t perform that action at this time.
0 commit comments