1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-27 15:37:38 +00:00

remove extraneous whitespaces (#11029)

* remove extraneous whitespaces

* ruff format

* add changelog frag
This commit is contained in:
Alexei Znamensky 2025-11-06 10:27:33 +13:00 committed by GitHub
parent b471a4a90d
commit 3c42ec730d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 19 additions and 14 deletions

View file

@ -210,7 +210,7 @@ class Infinity:
return the details of a given with given network_id or name
"""
if network_name is None and network_id is None:
self.module.exit_json(msg="You must specify one of the options 'network_name' or 'network_id'.")
self.module.exit_json(msg="You must specify one of the options 'network_name' or 'network_id'.")
method = "get"
resource_url = ""
params = {}
@ -287,12 +287,12 @@ class Infinity:
resource_url = ""
response = None
if ip_address is None or network_id is None:
self.module.exit_json(msg="You must specify those two options: 'network_id' and 'ip_address'.")
self.module.exit_json(msg="You must specify those two options: 'network_id' and 'ip_address'.")
resource_url = f"networks/{network_id}/children"
response = self._get_api_call_ansible_handler(method, resource_url)
if not response:
self.module.exit_json(msg=f"There is an error in release ip {ip_address} from network {network_id}.")
self.module.exit_json(msg=f"There is an error in release ip {ip_address} from network {network_id}.")
ip_list = json.loads(response)
ip_idlist = []
@ -407,7 +407,7 @@ class Infinity:
response = self._get_api_call_ansible_handler(method, resource_url)
if not response:
self.module.exit_json(
msg=f" there is an error in releasing network {network_id} from network {released_network_name}."
msg=f"There is an error in releasing network {network_id} from network {released_network_name}."
)
if response:
response = json.loads(response)
@ -422,7 +422,7 @@ class Infinity:
response = self._get_api_call_ansible_handler(method, resource_url, stat_codes=[204])
else:
self.module.exit_json(
msg=f" When release network , could not find the network {released_network_name} from the given superent {network_id} "
msg=f"When release network, could not find the network {released_network_name} from the given superent {network_id} "
)
return response
@ -448,7 +448,7 @@ class Infinity:
response = None
if network_name is None or network_address is None or network_size is None:
self.module.exit_json(
msg="You must specify those options 'network_name', 'network_address' and 'network_size'"
msg="You must specify those options 'network_name', 'network_address' and 'network_size'"
)
if not network_family: