Skip to content

Commit 52229bd

Browse files
committed
Small adjustments
1 parent a124573 commit 52229bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tb_rest_client/api/api_ce/device_controller_api.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1150,11 +1150,12 @@ def get_tenant_devices_using_get_with_http_info(self, **kwargs): # noqa: E501
11501150

11511151
params[key] = val
11521152
del params['kwargs']
1153-
# verify the required parameter 'limit' is set
1153+
# verify the required parameter 'page_size' is set
11541154
if ('page_size' not in params or
11551155
params['page_size'] is None):
11561156
raise ValueError("Missing the required parameter `page_size` when calling `get_tenant_devices_using_get`") # noqa: E501
1157-
elif ('page' not in params or
1157+
# verify the required parameter 'page_size' is set
1158+
if ('page' not in params or
11581159
params['page'] is None):
11591160
raise ValueError("Missing the required parameter `page` when calling `get_tenant_devices_using_get`") # noqa: E501
11601161

0 commit comments

Comments
 (0)