mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 10:10:31 -07:00
Fix more lint errors
This commit is contained in:
parent
3ddf968a07
commit
ff3d426296
1 changed files with 2 additions and 2 deletions
|
@ -238,14 +238,14 @@ class PacmanKey(object):
|
||||||
module.exit_json(changed=True)
|
module.exit_json(changed=True)
|
||||||
module.exit_json(changed=False)
|
module.exit_json(changed=False)
|
||||||
|
|
||||||
def gpg(self, args, /, keyring=None, **kwargs):
|
def gpg(self, args, keyring=None, **kwargs):
|
||||||
cmd = [self.gpg_binary]
|
cmd = [self.gpg_binary]
|
||||||
if keyring:
|
if keyring:
|
||||||
cmd.append(f'--homedir={keyring}')
|
cmd.append(f'--homedir={keyring}')
|
||||||
cmd.extend(['--no-permission-warning', '--with-colons', '--quiet', '--batch', '--no-tty'])
|
cmd.extend(['--no-permission-warning', '--with-colons', '--quiet', '--batch', '--no-tty'])
|
||||||
return self.module.run_command(cmd + args, **kwargs)
|
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(
|
return self.module.run_command(
|
||||||
[self.pacman_key_binary, '--gpgdir', keyring] + args,
|
[self.pacman_key_binary, '--gpgdir', keyring] + args,
|
||||||
**kwargs,
|
**kwargs,
|
||||||
|
|
Loading…
Add table
Reference in a new issue