mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-07 13:52:54 +00:00
use f-strings in module utils (#10901)
* use f-strings in module utils * Apply suggestions from code review Co-authored-by: Felix Fontein <felix@fontein.de> * remove unused imports --------- Co-authored-by: Felix Fontein <felix@fontein.de>
This commit is contained in:
@@ -67,7 +67,7 @@ def keycloak_clientsecret_module_resolve_params(module, kc):
|
||||
|
||||
if client is None:
|
||||
module.fail_json(
|
||||
msg='Client does not exist {client_id}'.format(client_id=client_id)
|
||||
msg=f'Client does not exist {client_id}'
|
||||
)
|
||||
|
||||
id = client['id']
|
||||
|
||||
Reference in New Issue
Block a user