Skip to content

Commit

Permalink
πŸ§ͺπŸ’„ Use single-quoted f-string conjur
Browse files Browse the repository at this point in the history
This was getting formatted @ GHA but not locally for some reason.
  • Loading branch information
webknjaz committed Aug 28, 2024
1 parent c0dfe4b commit 4126dc7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/awx_plugins/credentials/conjur.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def conjur_backend(**kwargs):
url, '/'.join(['api', 'secrets', account, 'variable', secret_path]),
)
if version:
ver = f"version={version}"
ver = f'version={version}'
path = '?'.join([path, ver])
path_conjurcloud = '?'.join([path_conjurcloud, ver])

Expand Down

0 comments on commit 4126dc7

Please sign in to comment.