1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-21 19:29:05 +00:00

modules s[a-e]*: use f-strings (#10976)

* modules s[a-e]*: use f-strings

* add changelog frag
This commit is contained in:
Alexei Znamensky 2025-10-26 22:34:24 +13:00 committed by GitHub
parent 32dd5f04c5
commit 73452acf84
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 243 additions and 280 deletions

View file

@ -102,18 +102,15 @@ def info_strategy(api, wished_cn):
cn_lookup = {cn["name"]: cn for cn in cn_list}
if wished_cn["name"] not in cn_lookup:
msg = "Error during container lookup: Unable to find container named '%s' in namespace '%s'" % (wished_cn["name"],
wished_cn["namespace_id"])
msg = f"Error during container lookup: Unable to find container named '{wished_cn['name']}' in namespace '{wished_cn['namespace_id']}'"
api.module.fail_json(msg=msg)
target_cn = cn_lookup[wished_cn["name"]]
response = api.get(path=api.api_path + "/%s" % target_cn["id"])
response = api.get(path=f"{api.api_path}/{target_cn['id']}")
if not response.ok:
msg = "Error during container lookup: %s: '%s' (%s)" % (response.info['msg'],
response.json['message'],
response.json)
msg = f"Error during container lookup: {response.info['msg']}: '{response.json['message']}' ({response.json})"
api.module.fail_json(msg=msg)
return response.json
@ -127,7 +124,7 @@ def core(module):
}
api = Scaleway(module=module)
api.api_path = "containers/v1beta1/regions/%s/containers" % region
api.api_path = f"containers/v1beta1/regions/{region}/containers"
summary = info_strategy(api=api, wished_cn=wished_container)