Skip to content

Commit 441a575

Browse files
committed
fix: return type for dashboard when include is used
1 parent d22a361 commit 441a575

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

influxdb_client/service/dashboards_service.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ def get_dashboards_id(self, dashboard_id, **kwargs): # noqa: E501,D401,D403
733733
:param str dashboard_id: The ID of the dashboard to update. (required)
734734
:param str zap_trace_span: OpenTracing span context
735735
:param str include: Includes the cell view properties in the response if set to `properties`
736-
:return: Dashboard
736+
:return: DashboardWithViewProperties
737737
If the method is called asynchronously,
738738
returns the request thread.
739739
""" # noqa: E501
@@ -756,7 +756,7 @@ def get_dashboards_id_with_http_info(self, dashboard_id, **kwargs): # noqa: E50
756756
:param str dashboard_id: The ID of the dashboard to update. (required)
757757
:param str zap_trace_span: OpenTracing span context
758758
:param str include: Includes the cell view properties in the response if set to `properties`
759-
:return: Dashboard
759+
:return: DashboardWithViewProperties
760760
If the method is called asynchronously,
761761
returns the request thread.
762762
""" # noqa: E501
@@ -820,7 +820,7 @@ def get_dashboards_id_with_http_info(self, dashboard_id, **kwargs): # noqa: E50
820820
body=body_params,
821821
post_params=form_params,
822822
files=local_var_files,
823-
response_type='Dashboard', # noqa: E501
823+
response_type='DashboardWithViewProperties', # noqa: E501
824824
auth_settings=auth_settings,
825825
async_req=local_var_params.get('async_req'),
826826
_return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501

0 commit comments

Comments
 (0)