From ff3d4262966224bb58dee600c649764071a91ed8 Mon Sep 17 00:00:00 2001 From: Daniel Albers Date: Tue, 1 Apr 2025 00:44:57 +0200 Subject: [PATCH] Fix more lint errors --- plugins/modules/pacman_key.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/pacman_key.py b/plugins/modules/pacman_key.py index 3d084d5f31..26c8984e16 100644 --- a/plugins/modules/pacman_key.py +++ b/plugins/modules/pacman_key.py @@ -238,14 +238,14 @@ class PacmanKey(object): module.exit_json(changed=True) module.exit_json(changed=False) - def gpg(self, args, /, keyring=None, **kwargs): + def gpg(self, args, keyring=None, **kwargs): cmd = [self.gpg_binary] if keyring: cmd.append(f'--homedir={keyring}') cmd.extend(['--no-permission-warning', '--with-colons', '--quiet', '--batch', '--no-tty']) return self.module.run_command(cmd + args, **kwargs) - def pacman_key(self, args, /, keyring, **kwargs): + def pacman_key(self, args, keyring, **kwargs): return self.module.run_command( [self.pacman_key_binary, '--gpgdir', keyring] + args, **kwargs,