Skip to content

Commit 972afa4

Browse files
committed
Adding missing page_size/page in device_controller
1 parent 95ea744 commit 972afa4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tb_rest_client/api/api_ce/device_controller_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -533,9 +533,9 @@ def get_customer_devices_using_get(self, customer_id, page_size, page, **kwargs)
533533
"""
534534
kwargs['_return_http_data_only'] = True
535535
if kwargs.get('async_req'):
536-
return self.get_customer_devices_using_get_with_http_info(customer_id, **kwargs) # noqa: E501
536+
return self.get_customer_devices_using_get_with_http_info(customer_id, page_size, page, **kwargs) # noqa: E501
537537
else:
538-
(data) = self.get_customer_devices_using_get_with_http_info(customer_id, **kwargs) # noqa: E501
538+
(data) = self.get_customer_devices_using_get_with_http_info(customer_id, page_size, page, **kwargs) # noqa: E501
539539
return data
540540

541541
def get_customer_devices_using_get_with_http_info(self, customer_id, page_size, page, **kwargs): # noqa: E501

0 commit comments

Comments
 (0)