From c180e3300e903f2e55448a4ad8db68ed29f5b32f Mon Sep 17 00:00:00 2001 From: Daniel Bernstein Date: Mon, 27 Nov 2023 12:41:16 -0800 Subject: [PATCH] Remove reference to unused response var. --- core/operation/publish_dashboard_from_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/operation/publish_dashboard_from_template.py b/core/operation/publish_dashboard_from_template.py index 9305358..79ee6af 100644 --- a/core/operation/publish_dashboard_from_template.py +++ b/core/operation/publish_dashboard_from_template.py @@ -149,7 +149,7 @@ def _recreate_dashboard(self, dashboard_params: dict) -> tuple[str, str]: :return: Dashboard ARN, Dashboard ID """ try: - response = self._qs_client.delete_dashboard( + _ = self._qs_client.delete_dashboard( AwsAccountId=dashboard_params["AwsAccountId"], DashboardId=dashboard_params["DashboardId"], )