mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 21:32:49 +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:
@@ -129,7 +129,7 @@ def webex_msg(module):
|
||||
ansible = module.params
|
||||
|
||||
headers = {
|
||||
'Authorization': 'Bearer {0}'.format(ansible['personal_token']),
|
||||
'Authorization': f"Bearer {ansible['personal_token']}",
|
||||
'content-type': 'application/json'
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user