1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

fix sanity error

This commit is contained in:
Dylan LEVERRIER 2024-06-02 11:20:52 +02:00
parent 168120dd4b
commit 5740b05295

View file

@ -582,7 +582,7 @@ class ProxmoxBackupAnsible(ProxmoxAnsible):
def get_task_parameters(self):
# Filtre pour exclure les paramètres d'authentification
exclude_keys = ['api_host', 'api_user', 'api_password', 'api_token_id',
'api_token_secret', 'validate_certs', 'state', 'mailto']
'api_token_secret', 'validate_certs', 'state', 'mailto']
task_params = {
k.replace('_', '-'): (1 if v is True else (0 if v is False else v))
for k, v in self.module.params.items()