1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-04-11 22:45:05 +00:00

modules bc*: use f-strings (#10945)

* modules bc*: use f-strings

* no quotes or backticks inside f-strs

* add changelog frag

* rename chglof frag file

* rename chglof frag file

* copr: re-applied change maintain original logic
This commit is contained in:
Alexei Znamensky 2025-10-25 12:45:40 +13:00 committed by GitHub
parent f9b4abf930
commit 0ef2235929
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
31 changed files with 197 additions and 202 deletions

View file

@ -122,7 +122,7 @@ def get_existing_pipeline_variable(module, bitbucket):
# Look through the all response pages in search of variable we need
page = 1
while True:
next_url = "%s?page=%s" % (variables_base_url, page)
next_url = f"{variables_base_url}?page={page}"
info, content = bitbucket.request(
api_url=next_url,
method='GET',
@ -132,7 +132,7 @@ def get_existing_pipeline_variable(module, bitbucket):
module.fail_json(msg='Invalid `repository` or `workspace`.')
if info['status'] != 200:
module.fail_json(msg='Failed to retrieve the list of pipeline variables: {0}'.format(info))
module.fail_json(msg=f'Failed to retrieve the list of pipeline variables: {info}')
# We are at the end of list
if 'pagelen' in content and content['pagelen'] == 0:
@ -161,10 +161,7 @@ def create_pipeline_variable(module, bitbucket):
)
if info['status'] != 201:
module.fail_json(msg='Failed to create pipeline variable `{name}`: {info}'.format(
name=module.params['name'],
info=info,
))
module.fail_json(msg=f"Failed to create pipeline variable `{module.params['name']}`: {info}")
def update_pipeline_variable(module, bitbucket, variable_uuid):
@ -182,10 +179,7 @@ def update_pipeline_variable(module, bitbucket, variable_uuid):
)
if info['status'] != 200:
module.fail_json(msg='Failed to update pipeline variable `{name}`: {info}'.format(
name=module.params['name'],
info=info,
))
module.fail_json(msg=f"Failed to update pipeline variable `{module.params['name']}`: {info}")
def delete_pipeline_variable(module, bitbucket, variable_uuid):
@ -199,10 +193,7 @@ def delete_pipeline_variable(module, bitbucket, variable_uuid):
)
if info['status'] != 204:
module.fail_json(msg='Failed to delete pipeline variable `{name}`: {info}'.format(
name=module.params['name'],
info=info,
))
module.fail_json(msg=f"Failed to delete pipeline variable `{module.params['name']}`: {info}")
class BitBucketPipelineVariable(AnsibleModule):