From a761f6b5681d0891c16207b92d609ac144b3ef37 Mon Sep 17 00:00:00 2001 From: okozachenko1203 Date: Fri, 14 Feb 2025 00:09:06 +1100 Subject: [PATCH] fix lint error --- magnum_cluster_api/resources.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/magnum_cluster_api/resources.py b/magnum_cluster_api/resources.py index fbcd4915..e7c529dd 100644 --- a/magnum_cluster_api/resources.py +++ b/magnum_cluster_api/resources.py @@ -32,7 +32,6 @@ from oslo_serialization import base64 from oslo_utils import encodeutils - from magnum_cluster_api import ( clients, helm, @@ -149,9 +148,7 @@ def apply(self) -> None: resource = self.get_object() # Check if resource exists - existing_resource = resource.api.get( - **resource.api_kwargs() - ) + existing_resource = resource.api.get(**resource.api_kwargs()) exists = existing_resource.status_code == 200 if not exists: