diff --git a/plugins/module_utils/oneview.py b/plugins/module_utils/oneview.py index 79f63402..6edd9547 100644 --- a/plugins/module_utils/oneview.py +++ b/plugins/module_utils/oneview.py @@ -862,7 +862,6 @@ def check_resource_absent(self, method='delete'): return {"changed": True, "msg": self.MSG_DELETED} else: return {"changed": False, "msg": self.MSG_ALREADY_ABSENT} - def check_resource_scopes_set(self, state, fact_name, scope_uris): """ diff --git a/plugins/modules/oneview_fc_network.py b/plugins/modules/oneview_fc_network.py index 2bb01f32..69e78da4 100644 --- a/plugins/modules/oneview_fc_network.py +++ b/plugins/modules/oneview_fc_network.py @@ -132,8 +132,7 @@ def __init__(self): required=True, choices=['present', 'absent'])) - super().__init__(additional_arg_spec=additional_arg_spec, validate_etag_support=True, - supports_check_mode=True) + super().__init__(additional_arg_spec=additional_arg_spec, validate_etag_support=True, supports_check_mode=True) self.set_resource_object(self.oneview_client.fc_networks) self.connection_templates = self.oneview_client.connection_templates diff --git a/plugins/modules/oneview_storage_system_facts.py b/plugins/modules/oneview_storage_system_facts.py index b7eb72c2..da764ec4 100644 --- a/plugins/modules/oneview_storage_system_facts.py +++ b/plugins/modules/oneview_storage_system_facts.py @@ -210,8 +210,7 @@ def __init__(self): storage_hostname=dict(type='str') ) - super().__init__(additional_arg_spec=argument_spec, validate_etag_support=True, - supports_check_mode=True) + super().__init__(additional_arg_spec=argument_spec, validate_etag_support=True, supports_check_mode=True) self.set_resource_object(self.oneview_client.storage_systems) def execute_module(self): diff --git a/plugins/modules/oneview_task_facts.py b/plugins/modules/oneview_task_facts.py index 35a3b79c..f79d973a 100644 --- a/plugins/modules/oneview_task_facts.py +++ b/plugins/modules/oneview_task_facts.py @@ -120,8 +120,7 @@ class TaskFactsModule(OneViewModule): ) def __init__(self): - super().__init__(additional_arg_spec=self.argument_spec, validate_etag_support=True, - supports_check_mode=True) + super().__init__(additional_arg_spec=self.argument_spec, validate_etag_support=True, supports_check_mode=True) self.set_resource_object(self.oneview_client.tasks)