From d9bb15d66c200a37c42b49bb50591af710b1d1a3 Mon Sep 17 00:00:00 2001 From: Daniel Albers Date: Tue, 1 Apr 2025 01:04:45 +0200 Subject: [PATCH] almost --- plugins/modules/pacman_key.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/plugins/modules/pacman_key.py b/plugins/modules/pacman_key.py index 95808322a5..1387a49aec 100644 --- a/plugins/modules/pacman_key.py +++ b/plugins/modules/pacman_key.py @@ -248,8 +248,7 @@ class PacmanKey(object): def pacman_key(self, args, keyring, **kwargs): return self.module.run_command( [self.pacman_key_binary, '--gpgdir', keyring] + args, - **kwargs, - ) + **kwargs) def pacman_machine_key(self, keyring): unused_rc, stdout, unused_stderr = self.gpg(['--list-secret-key'], keyring=keyring)